Version 1
[yaffs-website] / web / core / modules / system / tests / modules / image_test / src / Plugin / ImageToolkit / Operation / test / FooDerived.php
diff --git a/web/core/modules/system/tests/modules/image_test/src/Plugin/ImageToolkit/Operation/test/FooDerived.php b/web/core/modules/system/tests/modules/image_test/src/Plugin/ImageToolkit/Operation/test/FooDerived.php
new file mode 100644 (file)
index 0000000..818a414
--- /dev/null
@@ -0,0 +1,16 @@
+<?php
+
+namespace Drupal\image_test\Plugin\ImageToolkit\Operation\test;
+
+/**
+ * Builds an image toolkit operation.
+ *
+ * @ImageToolkitOperation(
+ *   id = "foo_derived",
+ *   toolkit = "test:derived_toolkit",
+ *   operation = "blur",
+ *   label = @Translation("Blur Derived"),
+ *   description = @Translation("Foo derived.")
+ * )
+ */
+class FooDerived extends OperationBase { }