You are here

public function ChildController::__construct in Bakery Single Sign-On System 8.2

Initialize bakery service.

Parameters

\Drupal\bakery\BakeryService $bakeryService: For bakery service.

\Drupal\bakery\Kitchen $kitchen: Kitchen service to work on all those cookies.

File

src/Controller/ChildController.php, line 34

Class

ChildController

Namespace

Drupal\bakery\Controller

Code

public function __construct(BakeryService $bakeryService, Kitchen $kitchen) {
  $this->bakeryService = $bakeryService;
  $this->kitchen = $kitchen;
}