Submit
Path:
~
/
/
usr
/
local
/
psa
/
admin
/
plib
/
modules
/
wp-toolkit
/
vendor
/
phpstan
/
phpdoc-parser
/
src
/
Ast
/
PhpDoc
/
Doctrine
/
File Content:
DoctrineArgument.php
<?php declare (strict_types=1); namespace WPToolkitDependenciesIsolationPrefix\PHPStan\PhpDocParser\Ast\PhpDoc\Doctrine; use WPToolkitDependenciesIsolationPrefix\PHPStan\PhpDocParser\Ast\ConstExpr\ConstExprNode; use WPToolkitDependenciesIsolationPrefix\PHPStan\PhpDocParser\Ast\Node; use WPToolkitDependenciesIsolationPrefix\PHPStan\PhpDocParser\Ast\NodeAttributes; use WPToolkitDependenciesIsolationPrefix\PHPStan\PhpDocParser\Ast\Type\IdentifierTypeNode; /** * @phpstan-type ValueType = DoctrineAnnotation|IdentifierTypeNode|DoctrineArray|ConstExprNode */ class DoctrineArgument implements Node { use NodeAttributes; public ?IdentifierTypeNode $key = null; /** @var ValueType */ public $value; /** * @param ValueType $value */ public function __construct(?IdentifierTypeNode $key, $value) { $this->key = $key; $this->value = $value; } public function __toString() : string { if ($this->key === null) { return (string) $this->value; } return $this->key . '=' . $this->value; } }
Submit
FILE
FOLDER
INFO
Name
Size
Permission
Action
DoctrineAnnotation.php
830 bytes
0644
DoctrineArgument.php
1090 bytes
0644
DoctrineArray.php
713 bytes
0644
DoctrineArrayItem.php
1359 bytes
0644
DoctrineTagValueNode.php
815 bytes
0644
N4ST4R_ID | Naxtarrr