src/MathParser/Lexing/ComplexLexer.php
Method __construct
has 40 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
public function __construct()
{
$this->add(new TokenDefinition('/\d+[,\.]\d+/', TokenType::RealNumber));
$this->add(new TokenDefinition('/\d+/', TokenType::PosInt));