Skip to content

Commit 2253ace

Browse files
committed
add some \ on PHP_VERSION_ID for 2.8
1 parent 155b770 commit 2253ace

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tests/ContainerTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -698,7 +698,7 @@ public function testThatCloningIsNotSupported()
698698
{
699699
$class = new \ReflectionClass('Symfony\Component\DependencyInjection\Container');
700700
$clone = $class->getMethod('__clone');
701-
if (PHP_VERSION_ID >= 50400) {
701+
if (\PHP_VERSION_ID >= 50400) {
702702
$this->assertFalse($class->isCloneable());
703703
}
704704
$this->assertTrue($clone->isPrivate());

0 commit comments

Comments
 (0)