Created
May 14, 2014 11:49
-
-
Save vojtech-dobes/97276a21e14391b67185 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class CredentialsAuthenticator | |
{ | |
/** @var Nette\Security\User */ | |
private $user; | |
public function __construct(Nette\Security\User $user) | |
{ | |
$this->user = $user; | |
} | |
public function login($email, $password) | |
{ | |
// ... | |
$this->user->login($identity); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment