Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions PropertyInfo/DoctrineExtractor.php
Original file line number Diff line number Diff line change
Expand Up @@ -166,8 +166,6 @@ public function getTypes(string $class, string $property, array $context = [])
case Type::BUILTIN_TYPE_ARRAY:
switch ($typeOfField) {
case Types::ARRAY:
case 'json_array':
return [new Type(Type::BUILTIN_TYPE_ARRAY, $nullable, null, true)];

case Types::SIMPLE_ARRAY:
return [new Type(Type::BUILTIN_TYPE_ARRAY, $nullable, null, true, new Type(Type::BUILTIN_TYPE_INT), new Type(Type::BUILTIN_TYPE_STRING))];
Expand Down Expand Up @@ -280,8 +278,6 @@ private function getPhpType(string $doctrineType): ?string

case Types::ARRAY:
case Types::SIMPLE_ARRAY:
case 'json_array':
return Type::BUILTIN_TYPE_ARRAY;
}

return null;
Expand Down