Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 65b2bcd

Browse files
Fix parse error
1 parent 5bc2753 commit 65b2bcd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Bridge/Doctrine/Form/DoctrineOrmTypeGuesser.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ public function guessType($class, $property)
7171
return new TypeGuess('Symfony\Component\Form\Extension\Core\Type\DateType', array('input' => 'datetime_immutable'), Guess::HIGH_CONFIDENCE);
7272
case Type::TIME:
7373
return new TypeGuess('Symfony\Component\Form\Extension\Core\Type\TimeType', array(), Guess::HIGH_CONFIDENCE);
74-
case 'time_immutable'
74+
case 'time_immutable':
7575
return new TypeGuess('Symfony\Component\Form\Extension\Core\Type\TimeType', array('input' => 'datetime_immutable'), Guess::HIGH_CONFIDENCE);
7676
case Type::DECIMAL:
7777
case Type::FLOAT:

0 commit comments

Comments
 (0)