You are here

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

Class constructor.

File

src/Forms/BakeryUncrumbleForm.php, line 40

Class

BakeryUncrumbleForm
Contribute form.

Namespace

Drupal\bakery\Forms

Code

public function __construct(PasswordInterface $password_hasher, Connection $connection, Kitchen $kitchen) {

  // TODO some sore of session storage abstraction?
  $this->passwordHasher = $password_hasher;
  $this->database = $connection;
  $this->kitchen = $kitchen;
}