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 48a183d commit 09922f4Copy full SHA for 09922f4
1 file changed
src/RangeIterator.php
@@ -16,6 +16,12 @@
16
* @see https://datatracker.ietf.org/doc/html/rfc2119
17
*/
18
19
+namespace FastForward\Iterator;
20
+
21
+use Iterator;
22
+use Countable;
23
+use InvalidArgumentException;
24
25
/**
26
* An iterator that behaves like PHP's `range()` function.
27
* It supports both ascending and descending sequences and allows iteration
@@ -77,13 +83,6 @@
77
83
*
78
84
* @since 1.0.0
79
85
80
-
81
-namespace FastForward\Iterator;
82
-use Iterator;
-use Countable;
-use InvalidArgumentException;
86
87
class RangeIterator implements Iterator, Countable
88
{
89
0 commit comments