whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
vendor
/
phpdocumentor
/
type-resolver
/
src
/
PseudoTypes
/
Upload File:
files >> //home/kckglobal/www/portal/vendor/phpdocumentor/type-resolver/src/PseudoTypes/ObjectShape.php
<?php declare(strict_types=1); namespace phpDocumentor\Reflection\PseudoTypes; use phpDocumentor\Reflection\PseudoType; use phpDocumentor\Reflection\Type; use phpDocumentor\Reflection\Types\Object_; use function implode; /** @psalm-immutable */ final class ObjectShape implements PseudoType { /** @var ObjectShapeItem[] */ private $items; public function __construct(ObjectShapeItem ...$items) { $this->items = $items; } /** * @return ObjectShapeItem[] */ public function getItems(): array { return $this->items; } public function underlyingType(): Type { return new Object_(); } public function __toString(): string { return 'object{' . implode(', ', $this->items) . '}'; } }
Copyright ©2021 || Defacer Indonesia