Home
last modified time | relevance | path

Searched refs:allowInvalidOctal (Results 1 – 2 of 2) sorted by relevance

/PHP-Parser/lib/PhpParser/Node/Scalar/
H A DInt_.php38 * @param bool $allowInvalidOctal Whether to allow invalid octal numbers (PHP 5)
42 …public static function fromString(string $str, array $attributes = [], bool $allowInvalidOctal = f… argument
62 if (!$allowInvalidOctal && strpbrk($str, '89')) {
/PHP-Parser/lib/PhpParser/
H A DParserAbstract.php738 …protected function parseLNumber(string $str, array $attributes, bool $allowInvalidOctal = false): … argument
740 return Int_::fromString($str, $attributes, $allowInvalidOctal);

Completed in 18 milliseconds