whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
vendor
/
azjezz
/
psl
/
src
/
Psl
/
Type
/
Internal
/
Upload File:
files >> /home/kckglobal/www/portal/vendor/azjezz/psl/src/Psl/Type/Internal/ObjectType.php
<?php declare(strict_types=1); namespace Psl\Type\Internal; use Psl\Type\Exception\AssertException; use Psl\Type\Exception\CoercionException; use Psl\Type\Type; use function is_object; /** * @extends Type<object> * * @internal */ final class ObjectType extends Type { /** * @psalm-assert-if-true T $value */ public function matches(mixed $value): bool { return is_object($value); } /** * @throws CoercionException * * @return object */ public function coerce(mixed $value): object { if (is_object($value)) { return $value; } throw CoercionException::withValue($value, $this->toString(), $this->getTrace()); } /** * @throws AssertException * * @return object * * @psalm-assert object $value */ public function assert(mixed $value): object { if (is_object($value)) { return $value; } throw AssertException::withValue($value, $this->toString(), $this->getTrace()); } public function toString(): string { return 'object'; } }
Copyright ©2021 || Defacer Indonesia