8000 Merge branch '3.1' · symfony/symfony@695549f · GitHub
[go: up one dir, main page]

Skip to content

Commit 695549f

Browse files
Merge branch '3.1'
* 3.1: Fix merge Fix merge Conflicts: src/Symfony/Component/DependencyInjection/composer.json
2 parents a5a03aa + eccbe67 commit 695549f

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,8 @@
9191
"phpdocumentor/reflection-docblock": "^3.0"
9292
},
9393
"conflict": {
94< 8000 code class="diff-text syntax-highlighted-line deletion">-
"phpdocumentor/reflection-docblock": "<3.0"
94+
"phpdocumentor/reflection-docblock": "<3.0",
95+
"phpdocumentor/type-resolver": "<0.2.0"
9596
},
9697
"autoload": {
9798
"psr-4": {

src/Symfony/Bundle/FrameworkBundle/composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,8 @@
5555
"twig/twig": "~1.23|~2.0"
5656
},
5757
"conflict": {
58-
"phpdocumentor/reflection-docblock": "<3.0"
58+
"phpdocumentor/reflection-docblock": "<3.0",
59+
"phpdocumentor/type-resolver": "<0.2.0"
5960
},
6061
"suggest": {
6162
"ext-apcu": "For best performance of the system caches",

src/Symfony/Component/Filesystem/Filesystem.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -534,7 +534,7 @@ public function tempnam($dir, $prefix)
534534

535535
// If no scheme or scheme is "file" or "gs" (Google Cloud) create temp file in local filesystem
536536
if (null === $scheme || 'file' === $scheme || 'gs' === $scheme) {
537-
$tmpFile = tempnam($hierarchy, $prefix);
537+
$tmpFile = @tempnam($hierarchy, $prefix);
538538

539539
// If tempnam failed or no scheme return the filename otherwise prepend the scheme
540540
if (false !== $tmpFile) {

src/Symfony/Component/PropertyInfo/composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@
3333
"doctrine/annotations": "~1.0"
3434
},
3535
"conflict": {
36-
"phpdocumentor/reflection-docblock": "<3.0"
36+
"phpdocumentor/reflection-docblock": "<3.0",
37+
"phpdocumentor/type-resolver": "<0.2.0"
3738
},
3839
"suggest": {
3940
"psr/cache-implementation": "To cache results",

0 commit comments

Comments
 (0)
0