Skip to content

Commit 4987f3f

Browse files
Merge branch '2.7' into 2.8
* 2.7: Mark deprecated Twig functions as deprecated with the Twig feature [appveyor] PHP 5.3.11 for Symfony 2.7 [HttpKernel] Group deprecation notices Conflicts: appveyor.yml
2 parents 9244ef9 + baf24f8 commit 4987f3f

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

Tests/Normalizer/GetSetMethodNormalizerTest.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -209,6 +209,9 @@ public function testConstructorDenormalizeWithMissingOptionalArgument()
209209

210210
public function testConstructorDenormalizeWithOptionalDefaultArgument()
211211
{
212+
if (PHP_VERSION_ID <= 50316) {
213+
$this->markTestSkipped('See https://bugs.php.net/62715');
214+
}
212215
$obj = $this->normalizer->denormalize(
213216
array('bar' => 'test'),
214217
__NAMESPACE__.'\GetConstructorArgsWithDefaultValueDummy', 'any');

Tests/Normalizer/ObjectNormalizerTest.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,9 @@ public function testConstructorDenormalizeWithMissingOptionalArgument()
157157

158158
public function testConstructorDenormalizeWithOptionalDefaultArgument()
159159
{
160+
if (PHP_VERSION_ID <= 50316) {
161+
$this->markTestSkipped('See https://bugs.php.net/62715');
162+
}
160163
$obj = $this->normalizer->denormalize(
161164
array('bar' => 'test'),
162165
__NAMESPACE__.'\ObjectConstructorArgsWithDefaultValueDummy', 'any');

0 commit comments

Comments
 (0)