Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for array of enums #9497

Merged
merged 16 commits into from
Apr 4, 2022
Prev Previous commit
Next Next commit
Fix order of use parameters
  • Loading branch information
Sander De la Marche committed Feb 9, 2022
commit 948f125f0090761d71fc97bc627ec7c6e37bb590
4 changes: 2 additions & 2 deletions lib/Doctrine/ORM/Mapping/ReflectionEnumProperty.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@
use ReturnTypeWillChange;
use ValueError;

use function array_map;
use function assert;
use function get_class;
use function is_array;
use function is_int;
use function is_string;
use function is_array;
use function array_map;

class ReflectionEnumProperty extends ReflectionProperty
{
Expand Down