| 1 | <?php |
||
| 8 | class GuardableSentinel extends Sentinel |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * Cycles through all the registered checkpoints for a user. Checkpoints |
||
| 12 | * may throw their own exceptions, however, if just one returns false, |
||
| 13 | * the cycle fails. |
||
| 14 | * |
||
| 15 | * @param string $method |
||
| 16 | * @param \Cartalyst\Sentinel\Users\UserInterface $user |
||
| 17 | * @param bool $halt |
||
| 18 | * @return bool |
||
| 19 | */ |
||
| 20 | public function doCycleCheckpoints($method, UserInterface $user = null, $halt = true) |
||
| 24 | } |
||
| 25 |