Cartalyst\Sentinel\Sentinel::removeCheckpoint PHP Метод

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

Removes a checkpoint.
public removeCheckpoint ( string $key ) : void
$key string
Результат void
    public function removeCheckpoint($key)
    {
        if (isset($this->checkpoints[$key])) {
            unset($this->checkpoints[$key]);
        }
    }

Usage Example

Пример #1
0
 /**
  * Removes a checkpoint.
  *
  * @param  string $key
  *
  * @return void
  */
 public function removeCheckpoint($key)
 {
     $this->sentinel->removeCheckpoint($key);
 }
All Usage Examples Of Cartalyst\Sentinel\Sentinel::removeCheckpoint