PATH:
home
/
rwabteecom
/
public_html
/
vendor
/
phpstan
/
phpdoc-parser
/
src
/
Ast
/
Type
/
Editing: OffsetAccessTypeNode.php
<?php declare(strict_types = 1); namespace PHPStan\PhpDocParser\Ast\Type; use PHPStan\PhpDocParser\Ast\NodeAttributes; class OffsetAccessTypeNode implements TypeNode { use NodeAttributes; /** @var TypeNode */ public $type; /** @var TypeNode */ public $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 ConstTypeNode || $this->type instanceof NullableTypeNode ) { return '(' . $this->type . ')[' . $this->offset . ']'; } return $this->type . '[' . $this->offset . ']'; } }
SAVE
CANCEL