File tree Expand file tree Collapse file tree 3 files changed +24
-0
lines changed Expand file tree Collapse file tree 3 files changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -24,8 +24,10 @@ parameters:
24
24
- stubs/FormTypeInterface.stub
25
25
- stubs/FormView.stub
26
26
- stubs/HeaderBag.stub
27
+ - stubs/Node.stub
27
28
- stubs/NormalizableInterface.stub
28
29
- stubs/NormalizerInterface.stub
30
+ - stubs/ParameterBag.stub
29
31
- stubs/Process.stub
30
32
- stubs/Session.stub
31
33
Original file line number Diff line number Diff line change
1
+ <?php
2
+
3
+ namespace Twig\Node;
4
+
5
+ /**
6
+ * @implements \IteratorAggregate<string, self>
7
+ */
8
+ class Node implements \IteratorAggregate
9
+ {
10
+
11
+ }
Original file line number Diff line number Diff line change
1
+ <?php
2
+
3
+ namespace Symfony\Component\HttpFoundation;
4
+
5
+ /**
6
+ * @implements \IteratorAggregate<string, mixed>
7
+ */
8
+ class ParameterBag implements \IteratorAggregate
9
+ {
10
+
11
+ }
You can’t perform that action at this time.
0 commit comments