Security update for Core, with self-updated composer
[yaffs-website] / web / core / modules / views / src / Plugin / views / filter / Broken.php
1 <?php
2
3 namespace Drupal\views\Plugin\views\filter;
4
5 use Drupal\views\Plugin\views\BrokenHandlerTrait;
6 use Drupal\views\Plugin\views\display\DisplayPluginBase;
7 use Drupal\views\ViewExecutable;
8
9 /**
10  * A special handler to take the place of missing or broken handlers.
11  *
12  * @ingroup views_filter_handlers
13  *
14  * @ViewsFilter("broken")
15  */
16 class Broken extends FilterPluginBase {
17   use BrokenHandlerTrait;
18
19   /**
20    * {@inheritdoc}
21    */
22   public function init(ViewExecutable $view, DisplayPluginBase $display, array &$options = NULL) {
23   }
24
25 }