Example #1
0
 /**
  * @param LoginModel $model
  */
 public function __construct(LoginModel $model, Entries $entries)
 {
     self::$sessionSaveLocation = Settings::MESSAGE_SESSION_NAME . Settings::APP_SESSION_NAME;
     self::$userSaveLocation = Settings::USER_SESSION_NAME . Settings::APP_SESSION_NAME;
     $this->model = $model;
     $this->entries = $entries->getEntries();
 }
 /**
  * @param \model\LoginModel $model
  */
 public function __construct(LoginModel $model)
 {
     self::$sessionSaveLocation = Settings::MESSAGE_SESSION_NAME . Settings::APP_SESSION_NAME;
     self::$userSaveLocation = Settings::USER_SESSION_NAME . Settings::APP_SESSION_NAME;
     $this->model = $model;
 }