TestContent.php

Contains \Drupal\router_test\TestContent.

Namespace

Drupal\router_test

File

drupal/core/modules/system/tests/modules/router_test/lib/Drupal/router_test/TestContent.php
View source
<?php

/**
 * @file
 * Contains \Drupal\router_test\TestContent.
 */
namespace Drupal\router_test;


/**
 * Test controllers that are intended to be wrapped in a main controller.
 */
class TestContent {

  /**
   * Provides example content for testing route enhancers.
   */
  public function test1() {
    return 'abcde';
  }

}

Classes

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