function DumperTestController::exportRenderable

Same name in other branches
  1. 4.x tests/modules/devel_dumper_test/src/Controller/DumperTestController.php \Drupal\devel_dumper_test\Controller\DumperTestController::exportRenderable()

Returns the renderable export output to test.

Return value

array The render array output.

1 string reference to 'DumperTestController::exportRenderable'
devel_dumper_test.routing.yml in tests/modules/devel_dumper_test/devel_dumper_test.routing.yml
tests/modules/devel_dumper_test/devel_dumper_test.routing.yml

File

tests/modules/devel_dumper_test/src/Controller/DumperTestController.php, line 91

Class

DumperTestController
Controller class for dumper_test module.

Namespace

Drupal\devel_dumper_test\Controller

Code

public function exportRenderable() : array {
    return $this->dumper
        ->exportAsRenderable('Test output');
}