You are here

class AuthcacheP13nTestRequestHandlerStub in Authenticated User Page Caching (Authcache) 7.2

Stub request handler.

Hierarchy

Expanded class hierarchy of AuthcacheP13nTestRequestHandlerStub

2 string references to 'AuthcacheP13nTestRequestHandlerStub'
AuthcacheP13nTestDefaultRequestRouter::setUp in modules/authcache_p13n/tests/authcache_p13n.frontcontroller.test
Sets up a Drupal site for running functional and integration tests.
AuthcacheP13nTestMarkup::createRequestHandlers in modules/authcache_p13n/tests/authcache_p13n.markup.test
Utility function: construct request handlers.

File

modules/authcache_p13n/tests/authcache_p13n.stub.inc, line 590
Stub classes for testing.

View source
class AuthcacheP13nTestRequestHandlerStub implements AuthcacheP13nRequestHandlerInterface {

  /**
   * {@inheritdoc}
   */
  public function handle($params) {
    print serialize($params);
  }

}

Members

Namesort descending Modifiers Type Description Overrides
AuthcacheP13nTestRequestHandlerStub::handle public function Render and print the response according to the given parameters. Overrides AuthcacheP13nRequestHandlerInterface::handle