Contains \Drupal\aggregator\Annotation\AggregatorProcessor.
<?php /** * @file * Contains \Drupal\aggregator\Annotation\AggregatorProcessor. */ namespace Drupal\aggregator\Annotation; use Drupal\Component\Annotation\Plugin; /** * Defines a Plugin annotation object for aggregator processor plugins. * * @Annotation */ class AggregatorProcessor extends Plugin { /** * The plugin ID. * * @var string */ public $id; /** * The title of the plugin. * * @var \Drupal\Core\Annotation\Translation * * @ingroup plugin_translatable */ public $title; /** * The description of the plugin. * * @var \Drupal\Core\Annotation\Translation * * @ingroup plugin_translatable */ public $description; }