Learner\Repositories\Table\SubscriberRepository::exists PHP Метод

exists() защищенный Метод

Whether the email exists in db.
protected exists ( integer $email ) : boolean
$email integer
Результат boolean
    protected function exists($email)
    {
        return $this->table->whereEmail($email)->count() !== 0;
    }