class CallsDestructableServiceController

Same name and namespace in other branches
  1. 11.x core/modules/system/tests/modules/destructable_test/src/Controller/CallsDestructableServiceController.php \Drupal\destructable_test\Controller\CallsDestructableServiceController

Controller to instantiate the destructable service.

Hierarchy

Expanded class hierarchy of CallsDestructableServiceController

File

core/modules/system/tests/modules/destructable_test/src/Controller/CallsDestructableServiceController.php, line 14

Namespace

Drupal\destructable_test\Controller
View source
final class CallsDestructableServiceController extends ControllerBase {
  
  /**
   * Destructable service.
   *
   * @var \Drupal\destructable_test\Destructable
   */
  protected $destructable;
  
  /**
   * {@inheritdoc}
   */
  public static function create(ContainerInterface $container) {
    return new static($container->get(Destructable::class));
  }
  public function __construct(Destructable $destructable) {
    $this->destructable = $destructable;
  }
  
  /**
   * Render callback.
   *
   * @return \Symfony\Component\HttpFoundation\Response
   *   Response.
   */
  public function render(Request $request) : Response {
    $this->destructable
      ->setSemaphore($request->query
      ->get('semaphore'));
    return new Response('This is a longer-ish string of content to send to the client, to invoke any trivial transfer buffers both on the server and client side.');
  }

}

Members

Title Sort descending Modifiers Object type Summary Overriden Title
CallsDestructableServiceController::$destructable protected property Destructable service.
CallsDestructableServiceController::create public static function Instantiates a new instance of the implementing class using autowiring. Overrides AutowireTrait::create
CallsDestructableServiceController::render public function Render callback.
CallsDestructableServiceController::__construct public function

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.