Skip to content

Commit

Permalink
Merge pull request #149 from greg0ire/analysis-jl1kRR
Browse files Browse the repository at this point in the history
Apply fixes from StyleCI
  • Loading branch information
greg0ire committed May 22, 2023
2 parents 29f0ed4 + bfabc30 commit 617e44d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/Bridge/Symfony/Validator/Constraint/Enum.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

/**
* @Annotation
*
* @Target({"PROPERTY", "METHOD", "ANNOTATION"})
*
* @author Sullivan Senechal <soullivaneuh@gmail.com>
Expand Down
2 changes: 1 addition & 1 deletion tests/Bridge/Symfony/Form/Type/EnumTypeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public function getInvalidEnums()
{
return [
[FooInterface::class],
[\StdClass::class],
[\stdClass::class],
['This\Does\Not\Exist\At\All'],
];
}
Expand Down
2 changes: 1 addition & 1 deletion tests/Bridge/Symfony/Validator/Constraint/EnumTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public function getInvalidEnums()
{
return [
[FooInterface::class],
[\StdClass::class],
[\stdClass::class],
['This\Does\Not\Exist\At\All'],
];
}
Expand Down

0 comments on commit 617e44d

Please sign in to comment.