Skip to content

Commit bfabc30

Browse files
committed
Apply fixes from StyleCI
1 parent eb526d6 commit bfabc30

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

src/Bridge/Symfony/Validator/Constraint/Enum.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99

1010
/**
1111
* @Annotation
12+
*
1213
* @Target({"PROPERTY", "METHOD", "ANNOTATION"})
1314
*
1415
* @author Sullivan Senechal <soullivaneuh@gmail.com>

tests/Bridge/Symfony/Form/Type/EnumTypeTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ public function getInvalidEnums()
6161
{
6262
return [
6363
[FooInterface::class],
64-
[\StdClass::class],
64+
[\stdClass::class],
6565
['This\Does\Not\Exist\At\All'],
6666
];
6767
}

tests/Bridge/Symfony/Validator/Constraint/EnumTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public function getInvalidEnums()
4545
{
4646
return [
4747
[FooInterface::class],
48-
[\StdClass::class],
48+
[\stdClass::class],
4949
['This\Does\Not\Exist\At\All'],
5050
];
5151
}

0 commit comments

Comments
 (0)