Skip to content
This repository has been archived by the owner on Aug 1, 2024. It is now read-only.

Commit

Permalink
Fix Symfony 4.2 deprecation (#304)
Browse files Browse the repository at this point in the history
  • Loading branch information
GuillaumeSTEIN authored and gilles-g committed Apr 17, 2019
1 parent 7076c1f commit 66c196d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Filter/Form/FilterTypeExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@ public function configureOptions(OptionsResolver $resolver)
}

/**
* {@inheritdoc}
* @return iterable
*/
public function getExtendedType()
public static function getExtendedTypes()
{
return FormType::class;
return [FormType::class];
}
}

0 comments on commit 66c196d

Please sign in to comment.