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/ResourceType.php
<?php declare(strict_types=1); namespace Psl\Type\Internal; use Psl\Str; use Psl\Type; use Psl\Type\Exception\AssertException; use Psl\Type\Exception\CoercionException; use function is_resource; /** * @extends Type\Type<resource> * * @internal */ final class ResourceType extends Type\Type { public function __construct( private ?string $kind = null ) { } /** * @throws CoercionException * * @return resource */ public function coerce(mixed $value): mixed { if (is_resource($value)) { $kind = $this->kind; if (null === $kind) { return $value; } if (get_resource_type($value) === $kind) { return $value; } } throw CoercionException::withValue($value, $this->toString(), $this->getTrace()); } /** * @throws AssertException * * @return resource * * @psalm-assert resource $value */ public function assert(mixed $value): mixed { if (is_resource($value)) { $kind = $this->kind; if (null === $kind) { return $value; } if (get_resource_type($value) === $kind) { return $value; } } throw AssertException::withValue($value, $this->toString(), $this->getTrace()); } public function toString(): string { if (null === $this->kind) { return 'resource'; } return Str\format('resource (%s)', $this->kind); } }
Copyright ©2021 || Defacer Indonesia