diff --git a/lib/Drupal/views/Plugin/views/argument/Standard.php b/lib/Drupal/views/Plugin/views/argument/Standard.php new file mode 100644 index 0000000000000000000000000000000000000000..d7dafb37ef625e0946aaab7487e345231b8e3a9d --- /dev/null +++ b/lib/Drupal/views/Plugin/views/argument/Standard.php @@ -0,0 +1,23 @@ +<?php + +/** + * @file + * Definition of Drupal\views\Plugin\views\argument\Standard. + */ + +namespace Drupal\views\Plugin\views\argument; + +use Drupal\Core\Annotation\Plugin; + +/** + * Default implementation of the base argument plugin. + * + * @ingroup views_argument_handlers + * + * @Plugin( + * id = "standard" + * ) + */ +class Standard extends ArgumentPluginBase { + +}