whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
vendor
/
azjezz
/
psl
/
src
/
Psl
/
Comparison
/
Exception
/
Upload File:
files >> /home/kckglobal/www/portal/vendor/azjezz/psl/src/Psl/Comparison/Exception/IncomparableException.php
<?php declare(strict_types=1); namespace Psl\Comparison\Exception; use InvalidArgumentException as InvalidArgumentRootException; use Psl\Exception\ExceptionInterface; use Psl\Str; use function get_debug_type; class IncomparableException extends InvalidArgumentRootException implements ExceptionInterface { public static function fromValues(mixed $a, mixed $b, string $additionalInfo = ''): self { return new self( Str\format( 'Unable to compare "%s" with "%s"%s', get_debug_type($a), get_debug_type($b), $additionalInfo ? ': ' . $additionalInfo : '.', ) ); } }
Copyright ©2021 || Defacer Indonesia