Skip to content

Commit

Permalink
Fix codestyle
Browse files Browse the repository at this point in the history
  • Loading branch information
janbarasek committed Oct 10, 2020
1 parent d142cf9 commit c1c212b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/TokenIterator.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@

use Mathematicator\Tokenizer\Exceptions\TokenizerException;
use Mathematicator\Tokenizer\Token\IToken;
use function count;

class TokenIterator
{
Expand Down Expand Up @@ -37,7 +36,7 @@ public function __construct(array $tokens)

public function getCount(): int
{
return count($this->tokens);
return \count($this->tokens);
}


Expand Down

0 comments on commit c1c212b

Please sign in to comment.