src/Lexing/AbstractLexer.php
Method __construct
has 48 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
public function __construct()
{
$this->add(new TokenDefinition('/\d+[,\.]\d+(e[+-]?\d+)?/', TokenType::REAL_NUMBER));
$this->add(new TokenDefinition('/\d+/', TokenType::NATURAL_NUMBER));