Skip to content

Commit c1c212b

Browse files
committed
Fix codestyle
1 parent d142cf9 commit c1c212b

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/TokenIterator.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77

88
use Mathematicator\Tokenizer\Exceptions\TokenizerException;
99
use Mathematicator\Tokenizer\Token\IToken;
10-
use function count;
1110

1211
class TokenIterator
1312
{
@@ -37,7 +36,7 @@ public function __construct(array $tokens)
3736

3837
public function getCount(): int
3938
{
40-
return count($this->tokens);
39+
return \count($this->tokens);
4140
}
4241

4342

0 commit comments

Comments
 (0)