You are here

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

File

src/Kitchen.php, line 54

Class

Kitchen

Namespace

Drupal\bakery

Code

public function __construct(TimeInterface $time, ConfigFactoryInterface $config_factory, AccountProxyInterface $current_user, ParameterBag $cookie_jar) {
  $this->time = $time;
  $this->config = $config_factory
    ->get('bakery.settings');
  $this->currentUser = $current_user;
  $this->cookieJar = $cookie_jar;
}