Version 1
[yaffs-website] / web / core / modules / system / tests / modules / plugin_test / src / Plugin / plugin_test / mock_block / MockLayoutBlock.php
1 <?php
2
3 namespace Drupal\plugin_test\Plugin\plugin_test\mock_block;
4
5 use Drupal\Component\Plugin\PluginBase;
6
7 /**
8  * Mock implementation of a layout block plugin used by Plugin API unit tests.
9  *
10  * No implementation here as there are no tests for this yet.
11  *
12  * @see \Drupal\plugin_test\Plugin\MockBlockManager
13  * @see \Drupal\plugin_test\Plugin\plugin_test\mock_block\MockUserLoginBlock
14  * @see \Drupal\plugin_test\Plugin\plugin_test\mock_block\MockMenuBlock
15  */
16 class MockLayoutBlock extends PluginBase {
17 }