OffsetAccessTypeNode.php
Namespace
PHPStan\PhpDocParser\Ast\TypeFile
-
vendor/
phpstan/ phpdoc-parser/ src/ Ast/ Type/ OffsetAccessTypeNode.php
View source
<?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 NullableTypeNode) {
return '(' . $this->type . ')[' . $this->offset . ']';
}
return $this->type . '[' . $this->offset . ']';
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
OffsetAccessTypeNode |