Cartalyst\Sentinel\Hashing\CallbackHasher::__construct PHP Метод

__construct() публичный Метод

Create a new callback hasher instance.
public __construct ( Closure $hash, Closure $check ) : void
$hash Closure
$check Closure
Результат void
    public function __construct(Closure $hash, Closure $check)
    {
        $this->hash = $hash;
        $this->check = $check;
    }