You are here

final class IgnoreAnnotation in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/Annotation/IgnoreAnnotation.php \Doctrine\Common\Annotations\Annotation\IgnoreAnnotation

Annotation that can be used to signal to the parser to ignore specific annotations during the parsing process.

@author Johannes M. Schmitt <schmittjoh@gmail.com>

Hierarchy

Expanded class hierarchy of IgnoreAnnotation

Related topics

1 file declares its use of IgnoreAnnotation
AnnotationReader.php in vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/AnnotationReader.php

File

vendor/doctrine/annotations/lib/Doctrine/Common/Annotations/Annotation/IgnoreAnnotation.php, line 29

Namespace

Doctrine\Common\Annotations\Annotation
View source
final class IgnoreAnnotation {

  /**
   * @var array
   */
  public $names;

  /**
   * Constructor.
   *
   * @param array $values
   *
   * @throws \RuntimeException
   */
  public function __construct(array $values) {
    if (is_string($values['value'])) {
      $values['value'] = array(
        $values['value'],
      );
    }
    if (!is_array($values['value'])) {
      throw new \RuntimeException(sprintf('@IgnoreAnnotation expects either a string name, or an array of strings, but got %s.', json_encode($values['value'])));
    }
    $this->names = $values['value'];
  }

}

Members