AnnotationInterface.php

Contains Drupal\Component\Annotation\AnnotationInterface.

Namespace

Drupal\Component\Annotation

File

drupal/core/lib/Drupal/Component/Annotation/AnnotationInterface.php
View source
<?php

/**
 * @file
 * Contains Drupal\Component\Annotation\AnnotationInterface.
 */
namespace Drupal\Component\Annotation;


/**
 * Defines a common interface for classed annotations.
 */
interface AnnotationInterface {

  /**
   * Returns the value of an annotation.
   */
  public function get();

}

Interfaces

Namesort descending Description
AnnotationInterface Defines a common interface for classed annotations.