From 3d12946d0d0fad4b358e1fcf38f494fe33d3adc9 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Sat, 1 Aug 2015 09:18:57 +0200 Subject: [PATCH] Fix typo --- .../Component/DependencyInjection/Tests/ContainerTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/DependencyInjection/Tests/ContainerTest.php b/src/Symfony/Component/DependencyInjection/Tests/ContainerTest.php index cffef39008..24ea6d6e91 100644 --- a/src/Symfony/Component/DependencyInjection/Tests/ContainerTest.php +++ b/src/Symfony/Component/DependencyInjection/Tests/ContainerTest.php @@ -710,7 +710,7 @@ class ContainerTest extends \PHPUnit_Framework_TestCase { $class = new \ReflectionClass('Symfony\Component\DependencyInjection\Container'); $clone = $class->getMethod('__clone'); - if (PHP_VERSION_ID >= 540000) { + if (PHP_VERSION_ID >= 50400) { $this->assertFalse($class->isCloneable()); } $this->assertTrue($clone->isPrivate());