/var/www/vhosts/ihelp.ro/httpdocs/vendor/phpunit/phpunit/src/Framework/Exception
NameSizeModeActions
ActualValueIsNotAnObjectException.php7320644editdlrm
AssertionFailedError.php6180644editdlrm
CodeCoverageException.php4300644editdlrm
ComparisonMethodDoesNotAcceptParameterTypeException.php9810644editdlrm
ComparisonMethodDoesNotDeclareBoolReturnTypeException.php9400644editdlrm
ComparisonMethodDoesNotDeclareExactlyOneParameterException.php9500644editdlrm
ComparisonMethodDoesNotDeclareParameterTypeException.php9480644editdlrm
ComparisonMethodDoesNotExistException.php9050644editdlrm
CoveredCodeNotExecutedException.php4510644editdlrm
Error.php6090644editdlrm
Exception.php24670644editdlrm
ExpectationFailedException.php12030644editdlrm
IncompleteTestError.php4710644editdlrm
InvalidArgumentException.php13020644editdlrm
InvalidCoversTargetException.php4550644editdlrm
InvalidDataProviderException.php4430644editdlrm
MissingCoversAnnotationException.php4520644editdlrm
NoChildTestSuiteException.php4400644editdlrm
OutputError.php4370644editdlrm
PHPTAssertionFailedError.php8000644editdlrm
RiskyTestError.php4340644editdlrm
SkippedTestError.php4650644editdlrm
SkippedTestSuiteError.php4700644editdlrm
SyntheticError.php13180644editdlrm
SyntheticSkippedError.php4640644editdlrm
UnintentionallyCoveredCodeError.php4510644editdlrm
Warning.php6110644editdlrm
Edit: /var/www/vhosts/ihelp.ro/httpdocs/vendor/phpunit/phpunit/src/Framework/Exception/SyntheticError.php (1318B)
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace PHPUnit\Framework; /** * @internal This class is not covered by the backward compatibility promise for PHPUnit */ class SyntheticError extends AssertionFailedError { /** * The synthetic file. * * @var string */ protected $syntheticFile = ''; /** * The synthetic line number. * * @var int */ protected $syntheticLine = 0; /** * The synthetic trace. * * @var array */ protected $syntheticTrace = []; public function __construct(string $message, int $code, string $file, int $line, array $trace) { parent::__construct($message, $code); $this->syntheticFile = $file; $this->syntheticLine = $line; $this->syntheticTrace = $trace; } public function getSyntheticFile(): string { return $this->syntheticFile; } public function getSyntheticLine(): int { return $this->syntheticLine; } public function getSyntheticTrace(): array { return $this->syntheticTrace; } }