Version 1
[yaffs-website] / web / core / modules / system / tests / modules / image_test / src / Plugin / ImageToolkit / DerivedToolkit.php
diff --git a/web/core/modules/system/tests/modules/image_test/src/Plugin/ImageToolkit/DerivedToolkit.php b/web/core/modules/system/tests/modules/image_test/src/Plugin/ImageToolkit/DerivedToolkit.php
new file mode 100644 (file)
index 0000000..9245662
--- /dev/null
@@ -0,0 +1,13 @@
+<?php
+
+namespace Drupal\image_test\Plugin\ImageToolkit;
+
+/**
+ * Provides a derivative of TestToolkit.
+ *
+ * @ImageToolkit(
+ *   id = "test:derived_toolkit",
+ *   title = @Translation("A dummy toolkit, derivative of 'test'.")
+ * )
+ */
+class DerivedToolkit extends TestToolkit { }