whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
vendor
/
phpstan
/
phpdoc-parser
/
src
/
Ast
/
Type
/
Upload File:
files >> //home/kckglobal/www/portal/vendor/phpstan/phpdoc-parser/src/Ast/Type/OffsetAccessTypeNode.php
<?php declare(strict_types = 1); namespace PHPStan\PhpDocParser\Ast\Type; use PHPStan\PhpDocParser\Ast\NodeAttributes; class OffsetAccessTypeNode implements TypeNode { use NodeAttributes; public TypeNode $type; public TypeNode $offset; public function __construct(TypeNode $type, TypeNode $offset) { $this->type = $type; $this->offset = $offset; } public function __toString(): string { if ( $this->type instanceof CallableTypeNode || $this->type instanceof NullableTypeNode ) { return '(' . $this->type . ')[' . $this->offset . ']'; } return $this->type . '[' . $this->offset . ']'; } }
Copyright ©2021 || Defacer Indonesia