Server IP : 15.235.198.142 / Your IP : 216.73.216.221 Web Server : Apache/2.4.58 (Ubuntu) System : Linux ballsack 6.8.0-45-generic #45-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 30 12:02:04 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 8.3.6 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /usr/share/php/PhpMyAdmin/SqlParser/ |
Upload File : |
<?php declare(strict_types=1); namespace PhpMyAdmin\SqlParser; use Exception; /** * Defines the core helper infrastructure of the library. */ class Core { /** * Whether errors should throw exceptions or just be stored. * * @see static::$errors * * @var bool */ public $strict = false; /** * List of errors that occurred during lexing. * * Usually, the lexing does not stop once an error occurred because that * error might be false positive or a partial result (even a bad one) * might be needed. * * @see Core::error() * * @var Exception[] */ public $errors = []; /** * Creates a new error log. * * @param Exception $error the error exception * * @return void * * @throws Exception throws the exception, if strict mode is enabled. */ public function error($error) { if ($this->strict) { throw $error; } $this->errors[] = $error; } }