Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x

DoctrineAnnotation.php

Namespace

PHPStan\PhpDocParser\Ast\PhpDoc\Doctrine

File

vendor/phpstan/phpdoc-parser/src/Ast/PhpDoc/Doctrine/DoctrineAnnotation.php

View source
<?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;
    
    /** @var string */
    public $name;
    
    /** @var list<DoctrineArgument> */
    public $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 . ')';
    }

}

Classes

Title Deprecated Summary
DoctrineAnnotation

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal