You are here

public function TestContent::test1 in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/system/tests/modules/router_test_directory/src/TestContent.php \Drupal\router_test\TestContent::test1()
  2. 10 core/modules/system/tests/modules/router_test_directory/src/TestContent.php \Drupal\router_test\TestContent::test1()

Provides example content for testing route enhancers.

1 string reference to 'TestContent::test1'
router_test.routing.yml in core/modules/system/tests/modules/router_test_directory/router_test.routing.yml
core/modules/system/tests/modules/router_test_directory/router_test.routing.yml

File

core/modules/system/tests/modules/router_test_directory/src/TestContent.php, line 40

Class

TestContent
Test controllers that are intended to be wrapped in a main controller.

Namespace

Drupal\router_test

Code

public function test1() {
  return [
    '#markup' => 'abcde',
  ];
}