Explorer
home
/
zoteqbgb
/
public_html
/
vendor
/
sebastian
/
diff
/
src
/
Exception
Location:
/home/zoteqbgb/public_html/vendor/sebastian/diff/src/Exception
Root path:
/home/zoteqbgb/public_html/config/676626
Editing: ConfigurationException.php
<?php declare(strict_types=1); /* * This file is part of sebastian/diff. * * (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 SebastianBergmann\Diff; use function gettype; use function is_object; use function sprintf; use Exception; final class ConfigurationException extends InvalidArgumentException { public function __construct( string $option, string $expected, $value, int $code = 0, ?Exception $previous = null ) { parent::__construct( sprintf( 'Option "%s" must be %s, got "%s".', $option, $expected, is_object($value) ? $value::class : (null === $value ? '<null>' : gettype($value) . '#' . $value), ), $code, $previous, ); } }
Save maftirs
Upload
Start Upload
New File
Create File
New Folder
Create Folder
Directory Contents
Name
Size
Perms
Modified
Actions
ConfigurationException.php
961 bytes
0644
2024-03-02 12:15
âï¸
ðï¸
Rename
Exception.php
353 bytes
0644
2024-03-02 12:15
âï¸
ðï¸
Rename
InvalidArgumentException.php
385 bytes
0644
2024-03-02 12:15
âï¸
ðï¸
Rename
Chang
Apply