AnnotationInterface.php

Definition of Drupal\Core\Annotation\AnnotationInterface.

Namespace

Drupal\Core\Annotation

File

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

/**
 * @file
 * Definition of Drupal\Core\Annotation\AnnotationInterface.
 */
namespace Drupal\Core\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.