File tree Expand file tree Collapse file tree 4 files changed +63
-0
lines changed Expand file tree Collapse file tree 4 files changed +63
-0
lines changed Original file line number Diff line number Diff line change 1
1
parameters :
2
2
stubFiles :
3
+ - stubs/ArrayHash.php
3
4
- stubs/Form.php
4
5
- stubs/FormContainer.php
6
+ - stubs/Html.php
7
+ - stubs/SessionSection.php
5
8
universalObjectCratesClasses :
6
9
- Nette\Application\UI\ITemplate
7
10
- Nette\Bridges\ApplicationLatte\Template
Original file line number Diff line number Diff line change
1
+ <?php
2
+
3
+ namespace Nette \Utils ;
4
+
5
+ /**
6
+ * @implements \IteratorAggregate<mixed, mixed>
7
+ * @implements \ArrayAccess<mixed, mixed>
8
+ */
9
+ class ArrayHash implements \ArrayAccess, \IteratorAggregate
10
+ {
11
+
12
+ /**
13
+ * @return \RecursiveArrayIterator<mixed>
14
+ */
15
+ public function getIterator (): \RecursiveArrayIterator
16
+ {
17
+ // nothing
18
+ }
19
+
20
+ }
Original file line number Diff line number Diff line change
1
+ <?php
2
+
3
+ namespace Nette \Utils ;
4
+
5
+ /**
6
+ * @implements \IteratorAggregate<int, self|string>
7
+ * @implements \ArrayAccess<int, self|string>
8
+ */
9
+ class Html implements \ArrayAccess, \IteratorAggregate
10
+ {
11
+
12
+ /**
13
+ * @return \ArrayIterator<int, self|string>
14
+ */
15
+ public function getIterator (): \ArrayIterator
16
+ {
17
+ // nothing
18
+ }
19
+
20
+ }
Original file line number Diff line number Diff line change
1
+ <?php
2
+
3
+ namespace Nette \Http ;
4
+
5
+ /**
6
+ * @implements \IteratorAggregate<mixed, mixed>
7
+ * @implements \ArrayAccess<mixed, mixed>
8
+ */
9
+ class SessionSection implements \IteratorAggregate, \ArrayAccess
10
+ {
11
+
12
+ /**
13
+ * @return \ArrayIterator<mixed, mixed>
14
+ */
15
+ public function getIterator (): \ArrayIterator
16
+ {
17
+ // nothing
18
+ }
19
+
20
+ }
You can’t perform that action at this time.
0 commit comments