/opt/cpanel/ea-wappspector/vendor/phpunit/phpunit/src/Util/Exception
NameSizeModeActions
Exception.php5450644editdlrm
InvalidDirectoryException.php8260644editdlrm
InvalidJsonException.php5890644editdlrm
InvalidVersionOperatorException.php8530644editdlrm
PhpProcessException.php6200644editdlrm
XmlException.php6130644editdlrm
Edit: /opt/cpanel/ea-wappspector/vendor/phpunit/phpunit/src/Util/Exception/InvalidDirectoryException.php (826B)
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace PHPUnit\Util; use function sprintf; use RuntimeException; /** * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit * * @internal This class is not covered by the backward compatibility promise for PHPUnit */ final class InvalidDirectoryException extends RuntimeException implements Exception { public function __construct(string $directory) { parent::__construct( sprintf( '"%s" is not a directory', $directory, ), ); } }