PHP 8.2.31
Preview: ExpectationFailedException.php Size: 1.17 KB
/opt/cpanel/ea-wappspector/vendor/phpunit/phpunit/src/Framework/Exception/ExpectationFailedException.php

<?php declare(strict_types=1);
/*
 * This file is part of PHPUnit.
 *
 * (c) Sebastian Bergmann <sebastian@phpunit.de>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */
namespace PHPUnit\Framework;

use Exception;
use SebastianBergmann\Comparator\ComparisonFailure;

/**
 * Exception for expectations which failed their check.
 *
 * The exception contains the error message and optionally a
 * SebastianBergmann\Comparator\ComparisonFailure which is used to
 * generate diff output of the failed expectations.
 *
 * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit
 */
final class ExpectationFailedException extends AssertionFailedError
{
    protected ?ComparisonFailure $comparisonFailure = null;

    public function __construct(string $message, ?ComparisonFailure $comparisonFailure = null, ?Exception $previous = null)
    {
        $this->comparisonFailure = $comparisonFailure;

        parent::__construct($message, 0, $previous);
    }

    public function getComparisonFailure(): ?ComparisonFailure
    {
        return $this->comparisonFailure;
    }
}

Directory Contents

Dirs: 3 × Files: 15

Name Size Perms Modified Actions
- drwxr-xr-x 2026-01-27 05:48:37
Edit Download
- drwxr-xr-x 2026-01-27 05:48:37
Edit Download
Skipped DIR
- drwxr-xr-x 2026-01-27 05:48:37
Edit Download
726 B lrw-r--r-- 2026-01-27 05:48:37
Edit Download
538 B lrw-r--r-- 2026-01-27 05:48:37
Edit Download
558 B lrw-r--r-- 2026-01-27 05:48:37
Edit Download
2.54 KB lrw-r--r-- 2026-01-27 05:48:37
Edit Download
1.17 KB lrw-r--r-- 2026-01-27 05:48:37
Edit Download
876 B lrw-r--r-- 2026-01-27 05:48:37
Edit Download
550 B lrw-r--r-- 2026-01-27 05:48:37
Edit Download
563 B lrw-r--r-- 2026-01-27 05:48:37
Edit Download
551 B lrw-r--r-- 2026-01-27 05:48:37
Edit Download
583 B lrw-r--r-- 2026-01-27 05:48:37
Edit Download
548 B lrw-r--r-- 2026-01-27 05:48:37
Edit Download
1.40 KB lrw-r--r-- 2026-01-27 05:48:37
Edit Download
548 B lrw-r--r-- 2026-01-27 05:48:37
Edit Download
808 B lrw-r--r-- 2026-01-27 05:48:37
Edit Download
780 B lrw-r--r-- 2026-01-27 05:48:37
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).