8000 Merge branch '4.2' into 4.3 · symfony/symfony@b78816d · GitHub
[go: up one dir, main page]

Skip to content

Commit b78816d

Browse files
Merge branch '4.2' into 4.3
* 4.2: [PhpUnitBridge] fix running simple-phpunit on Windows fixed phpdocs
2 parents c799fc8 + 44e8252 commit b78816d

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

src/Symfony/Bridge/PhpUnit/bin/simple-phpunit.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,8 +127,9 @@
127127
}
128128
$prevRoot = getenv('COMPOSER_ROOT_VERSION');
129129
putenv("COMPOSER_ROOT_VERSION=$PHPUNIT_VERSION.99");
130+
$q = '\\' === DIRECTORY_SEPARATOR ? '"' : '';
130131
// --no-suggest is not in the list to keep compat with composer 1.0, which is shipped with Ubuntu 16.04LTS
131-
$exit = proc_close(proc_open("$COMPOSER install --no-dev --prefer-dist --no-progress --ansi", array(), $p, getcwd()));
132+
$exit = proc_close(proc_open("$q$COMPOSER install --no-dev --prefer-dist --no-progress --ansi$q", array(), $p, getcwd()));
132133
putenv('COMPOSER_ROOT_VERSION'.(false !== $prevRoot ? '='.$prevRoot : ''));
133134
if ($exit) {
134135
exit($exit);

src/Symfony/Bundle/FrameworkBundle/Command/AbstractConfigCommand.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,9 @@ protected function listBundles($output)
5252
}
5353
}
5454

55+
/**
56+
* @return ExtensionInterface
57+
*/
5558
protected function findExtension($name)
5659
{
5760
$bundles = $this->initializeBundles();

src/Symfony/Component/Config/Definition/ArrayNode.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ public function setPerformDeepMerging($boolean)
141141
}
142142

143143
/**
144-
* Whether extra keys should just be ignore without an exception.
144+
* Whether extra keys should just be ignored without an exception.
145145
*
146146
* @param bool $boolean To allow extra keys
147147
* @param bool $remove To remove extra keys

0 commit comments

Comments
 (0)
0