Skip to content

Commit 09922f4

Browse files
committed
Fix PHPDoc position
Signed-off-by: Felipe Sayão Lobato Abreu <github@mentordosnerds.com>
1 parent 48a183d commit 09922f4

1 file changed

Lines changed: 6 additions & 7 deletions

File tree

src/RangeIterator.php

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,12 @@
1616
* @see https://datatracker.ietf.org/doc/html/rfc2119
1717
*/
1818

19+
namespace FastForward\Iterator;
20+
21+
use Iterator;
22+
use Countable;
23+
use InvalidArgumentException;
24+
1925
/**
2026
* An iterator that behaves like PHP's `range()` function.
2127
* It supports both ascending and descending sequences and allows iteration
@@ -77,13 +83,6 @@
7783
*
7884
* @since 1.0.0
7985
*/
80-
81-
namespace FastForward\Iterator;
82-
83-
use Iterator;
84-
use Countable;
85-
use InvalidArgumentException;
86-
8786
class RangeIterator implements Iterator, Countable
8887
{
8988
/**

0 commit comments

Comments
 (0)