Submit
Path:
~
/
/
opt
/
psa
/
admin
/
plib
/
vendor
/
phpstan
/
phpdoc-parser
/
src
/
Ast
/
PhpDoc
/
Doctrine
/
File Content:
DoctrineAnnotation.php
<?php declare(strict_types = 1); namespace PHPStan\PhpDocParser\Ast\PhpDoc\Doctrine; use PHPStan\PhpDocParser\Ast\Node; use PHPStan\PhpDocParser\Ast\NodeAttributes; use function implode; class DoctrineAnnotation implements Node { use NodeAttributes; public string $name; /** @var list<DoctrineArgument> */ public array $arguments; /** * @param list<DoctrineArgument> $arguments */ public function __construct(string $name, array $arguments) { $this->name = $name; $this->arguments = $arguments; } public function __toString(): string { $arguments = implode(', ', $this->arguments); return $this->name . '(' . $arguments . ')'; } }
Submit
FILE
FOLDER
INFO
Name
Size
Permission
Action
DoctrineAnnotation.php
663 bytes
0644
DoctrineArgument.php
836 bytes
0644
DoctrineArray.php
555 bytes
0644
DoctrineArrayItem.php
1025 bytes
0644
DoctrineTagValueNode.php
672 bytes
0644
N4ST4R_ID | Naxtarrr