Skip to content

Commit bb1f7d6

Browse files
Fix FormView stub
1 parent de268d2 commit bb1f7d6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

stubs/Symfony/Component/Form/FormView.stub

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,16 @@ use ArrayAccess;
66
use IteratorAggregate;
77

88
/**
9-
* @implements IteratorAggregate<string, self>
10-
* @implements ArrayAccess<string, self>
9+
* @implements IteratorAggregate<int|string, self>
10+
* @implements ArrayAccess<int|string, self>
1111
*/
1212
class FormView implements ArrayAccess, IteratorAggregate
1313
{
1414

1515
/**
1616
* Returns an iterator to iterate over children (implements \IteratorAggregate).
1717
*
18-
* @return \ArrayIterator<string, FormView> The iterator
18+
* @return \ArrayIterator<int|string, FormView> The iterator
1919
*/
2020
public function getIterator();
2121

0 commit comments

Comments
 (0)