12 lines
227 B
PHP
12 lines
227 B
PHP
<?php
|
|
|
|
namespace Drupal\views\Annotation;
|
|
|
|
use Drupal\Component\Annotation\PluginID;
|
|
|
|
/**
|
|
* Defines an abstract base class for all views handler annotations.
|
|
*/
|
|
abstract class ViewsHandlerAnnotationBase extends PluginID {
|
|
|
|
}
|