We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 18ef231 commit 87aa0f6Copy full SHA for 87aa0f6
extension.neon
@@ -11,6 +11,7 @@ parameters:
11
- stubs/Forms/Rules.stub
12
- stubs/Http/SessionSection.stub
13
- stubs/Routing/Router.stub
14
+ - stubs/Utils/ArrayHash.stub
15
- stubs/Utils/Html.stub
16
universalObjectCratesClasses:
17
- Nette\Application\UI\ITemplate
stubs/Utils/ArrayHash.stub
@@ -0,0 +1,20 @@
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
+{
+ /**
+ * @return \RecursiveArrayIterator<mixed>
+ public function getIterator(): \RecursiveArrayIterator
+ {
+ // nothing
18
+ }
19
20
+}
0 commit comments