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

Checks if a valid activation has been completed.
public completed ( Cartalyst\Sentinel\Users\UserInterface $user ) : Cartalyst\Sentinel\Activations\ActivationInterface | boolean
$user Cartalyst\Sentinel\Users\UserInterface
Результат Cartalyst\Sentinel\Activations\ActivationInterface | boolean
Пример #1
0
 /**
  * Checks the activation status of the given user.
  *
  * @param  \Cartalyst\Sentinel\Users\UserInterface  $user
  * @return bool
  * @throws \Cartalyst\Sentinel\Checkpoints\NotActivatedException
  */
 protected function checkActivation(UserInterface $user)
 {
     $completed = $this->activations->completed($user);
     if (!$completed) {
         $exception = new NotActivatedException('Your account has not been activated yet.');
         $exception->setUser($user);
         throw $exception;
     }
 }