/home/techb158/ileadtechnology.com/vendor/phpunit/phpunit/src/Framework/Error
NameSizeModeActions
Deprecated.php3300644editdlrm
Error.php5990644editdlrm
Notice.php3260644editdlrm
Warning.php3270644editdlrm
Edit: /home/techb158/ileadtechnology.com/vendor/phpunit/phpunit/src/Framework/Error/Error.php (599B)
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace PHPUnit\Framework\Error; use PHPUnit\Framework\Exception; class Error extends Exception { public function __construct(string $message, int $code, string $file, int $line, \Exception $previous = null) { parent::__construct($message, $code, $previous); $this->file = $file; $this->line = $line; } }