Same filename and directory in other branches
  1. 8.9.x core/modules/system/tests/modules/plugin_test/src/Plugin/plugin_test/mock_block/MockLayoutBlock.php
  2. 9 core/modules/system/tests/modules/plugin_test/src/Plugin/plugin_test/mock_block/MockLayoutBlock.php

Namespace

Drupal\plugin_test\Plugin\plugin_test\mock_block

File

core/modules/system/tests/modules/plugin_test/src/Plugin/plugin_test/mock_block/MockLayoutBlock.php
View source
<?php

namespace Drupal\plugin_test\Plugin\plugin_test\mock_block;

use Drupal\Component\Plugin\PluginBase;

/**
 * Mock implementation of a layout block plugin used by Plugin API unit tests.
 *
 * No implementation here as there are no tests for this yet.
 *
 * @see \Drupal\plugin_test\Plugin\MockBlockManager
 * @see \Drupal\plugin_test\Plugin\plugin_test\mock_block\MockUserLoginBlock
 * @see \Drupal\plugin_test\Plugin\plugin_test\mock_block\MockMenuBlock
 */
class MockLayoutBlock extends PluginBase {

}

Classes

Namesort descending Description
MockLayoutBlock Mock implementation of a layout block plugin used by Plugin API unit tests.