You are here

public function TestController::simple in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/system/tests/modules/conneg_test/src/Controller/TestController.php \Drupal\conneg_test\Controller\TestController::simple()

Returns a json response.

Return value

\Symfony\Component\HttpFoundation\JsonResponse

1 string reference to 'TestController::simple'
conneg_test.routing.yml in core/modules/system/tests/modules/conneg_test/conneg_test.routing.yml
core/modules/system/tests/modules/conneg_test/conneg_test.routing.yml

File

core/modules/system/tests/modules/conneg_test/src/Controller/TestController.php, line 19

Class

TestController
Test controller for content negotiation tests.

Namespace

Drupal\conneg_test\Controller

Code

public function simple() {
  return new JsonResponse([
    'some' => 'data',
  ]);
}