Skip to content

Commit db5e853

Browse files
committed
Fix syntax for php5.4
1 parent 7b9880d commit db5e853

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Tests/Form/EnumTypeGuesserTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ public function testNullResultWhenIsNotChildOfAbstractEnumType()
106106
->getMock();
107107
$registeredTypes = [
108108
'NotAChildType' => [
109-
'class' => NotAChildType::class,
109+
'class' => '\Fresh\DoctrineEnumBundle\Tests\Fixtures\DBAL\Types\NotAChildType',
110110
]
111111
];
112112

@@ -139,7 +139,7 @@ public function testSuccessfulTypeGuessing()
139139
->getMock();
140140
$registeredTypes = [
141141
'BasketballPositionType' => [
142-
'class' => BasketballPositionType::class,
142+
'class' => '\Fresh\DoctrineEnumBundle\Tests\Fixtures\DBAL\Types\BasketballPositionType',
143143
]
144144
];
145145

0 commit comments

Comments
 (0)