@@ -15,7 +15,6 @@ interface BufferInterface extends \SeekableIterator
15
15
* Rewind the BufferInterface to the target token element.
16
16
*
17
17
* @link https://php.net/manual/en/seekableiterator.seek.php
18
- *
19
18
* @see \SeekableIterator::seek()
20
19
*
21
20
* @param int<0, max> $offset
@@ -26,7 +25,6 @@ public function seek($offset): void;
26
25
* Return the current token.
27
26
*
28
27
* @link https://php.net/manual/en/iterator.current.php
29
- *
30
28
* @see \Iterator::current()
31
29
*/
32
30
public function current (): TokenInterface ;
@@ -35,7 +33,6 @@ public function current(): TokenInterface;
35
33
* Return the ordinal id of the current token element.
36
34
*
37
35
* @link https://php.net/manual/en/iterator.key.php
38
- *
39
36
* @see \Iterator::key()
40
37
*
41
38
* @return int<0, max>
@@ -46,7 +43,6 @@ public function key(): int;
46
43
* Checks if current position is valid and iterator not completed.
47
44
*
48
45
* @link https://php.net/manual/en/iterator.valid.php
49
- *
50
46
* @see \Iterator::valid()
51
47
*/
52
48
public function valid (): bool ;
@@ -55,7 +51,6 @@ public function valid(): bool;
55
51
* Rewind the BufferInterface to the first token element.
56
52
*
57
53
* @link https://php.net/manual/en/iterator.rewind.php
58
- *
59
54
* @see \Iterator::rewind()
60
55
*/
61
56
public function rewind (): void ;
@@ -64,7 +59,6 @@ public function rewind(): void;
64
59
* Move forward to next token element.
65
60
*
66
61
* @link https://php.net/manual/en/iterator.next.php
67
- *
68
62
* @see \Iterator::next()
69
63
*/
70
64
public function next (): void ;
0 commit comments