Version 1
[yaffs-website] / web / core / modules / views / src / Plugin / views / argument / Broken.php
diff --git a/web/core/modules/views/src/Plugin/views/argument/Broken.php b/web/core/modules/views/src/Plugin/views/argument/Broken.php
new file mode 100644 (file)
index 0000000..d85c285
--- /dev/null
@@ -0,0 +1,17 @@
+<?php
+
+namespace Drupal\views\Plugin\views\argument;
+
+use Drupal\views\Plugin\views\BrokenHandlerTrait;
+
+/**
+ * A special handler to take the place of missing or broken handlers.
+ *
+ * @ingroup views_argument_handlers
+ *
+ * @ViewsArgument("broken")
+ */
+class Broken extends ArgumentPluginBase {
+  use BrokenHandlerTrait;
+
+}