Version 1
[yaffs-website] / web / core / modules / system / tests / modules / plugin_test / src / Plugin / plugin_test / mock_block / MockTestBlock.php
diff --git a/web/core/modules/system/tests/modules/plugin_test/src/Plugin/plugin_test/mock_block/MockTestBlock.php b/web/core/modules/system/tests/modules/plugin_test/src/Plugin/plugin_test/mock_block/MockTestBlock.php
new file mode 100644 (file)
index 0000000..8fb7c40
--- /dev/null
@@ -0,0 +1,14 @@
+<?php
+
+namespace Drupal\plugin_test\Plugin\plugin_test\mock_block;
+
+use Drupal\Component\Plugin\PluginBase;
+
+/**
+ * Mock implementation of a test block plugin used by Plugin API unit tests.
+ *
+ * @see \Drupal\plugin_test\Plugin\DefaultsTestPluginManager
+ */
+class MockTestBlock extends PluginBase {
+
+}