🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-06-15 07:22:51 | PHP 8.1.34
📂
/ (Root)
/
opt
/
cpanel
/
ea-wappspector
/
vendor
/
phpstan
/
phpdoc-parser
/
src
/
Ast
/
PhpDoc
/
Doctrine
📍 /opt/cpanel/ea-wappspector/vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/Doctrine
🔄 Refresh
✏️
Editing: DoctrineAnnotation.php
Read Only
<?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 . ')'; } }
💾 Save Changes
❌ Cancel