login = $login; $this->password_hash = $password_hash; } function login($login, $password) { if (DRIVER != "sqlite" && DRIVER != "sqlite2") { return true; } return $this->login == $login && password_verify($password, $this->password_hash); } }