Skip to content

Commit

Permalink
Fix formInterface stub
Browse files Browse the repository at this point in the history
  • Loading branch information
VincentLanglet authored and ondrejmirtes committed May 27, 2022
1 parent 063ce41 commit 5d2d5ad
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions stubs/Symfony/Component/Form/FormInterface.stub
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@
namespace Symfony\Component\Form;

/**
* @extends \Traversable<string|int, \Symfony\Component\Form\FormInterface>
* @extends \ArrayAccess<string, \Symfony\Component\Form\FormInterface>
* @extends \Traversable<string, \Symfony\Component\Form\FormInterface>
*/
interface FormInterface extends \Traversable
interface FormInterface extends \ArrayAccess, \Traversable, \Countable
{

}

0 comments on commit 5d2d5ad

Please sign in to comment.