Skip to content

Commit

Permalink
Merge branch '2.3' into 2.7
Browse files Browse the repository at this point in the history
* 2.3:
  [travis] timeout the sigchild tests at 60s
  CS: Single line comments should use double slashes (//) and not hash (#).
  Do not use HttpKernel Extension when not needed
  bumped Symfony version to 2.3.37
  updated VERSION for 2.3.36
  update CONTRIBUTORS for 2.3.36
  updated CHANGELOG for 2.3.36
  use nowdoc instead of heredoc

Conflicts:
	src/Symfony/Bundle/FrameworkBundle/Command/ConfigDumpReferenceCommand.php
	src/Symfony/Bundle/FrameworkBundle/Command/RouterApacheDumperCommand.php
	src/Symfony/Bundle/FrameworkBundle/Command/RouterMatchCommand.php
	src/Symfony/Bundle/FrameworkBundle/Translation/Translator.php
	src/Symfony/Bundle/TwigBundle/Command/LintCommand.php
	src/Symfony/Component/Config/Tests/Definition/Dumper/YamlReferenceDumperTest.php
	src/Symfony/Component/Debug/ExceptionHandler.php
	src/Symfony/Component/HttpKernel/Kernel.php
	src/Symfony/Component/Routing/Generator/Dumper/PhpGeneratorDumper.php
  • Loading branch information
nicolas-grekas committed Dec 28, 2015
2 parents 8d7beaa + 185a58c commit 00d113b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Tests/ConstraintViolationListTest.php
Expand Up @@ -110,7 +110,7 @@ public function testToString()
$this->getViolation('Error 5', '', '[baz]'),
));

$expected = <<<EOF
$expected = <<<'EOF'
Root:
Error 1
Root.foo.bar:
Expand Down
4 changes: 2 additions & 2 deletions Tests/ConstraintViolationTest.php
Expand Up @@ -26,7 +26,7 @@ public function testToStringHandlesArrays()
null
);

$expected = <<<EOF
$expected = <<<'EOF'
Root.property.path:
Array
EOF;
Expand All @@ -45,7 +45,7 @@ public function testToStringHandlesArrayRoots()
null
);

$expected = <<<EOF
$expected = <<<'EOF'
Array.some_value:
42 cannot be used here
EOF;
Expand Down

0 comments on commit 00d113b

Please sign in to comment.