| 1 | <?php |
||
| 24 | final class Guard |
||
| 25 | { |
||
| 26 | /** |
||
| 27 | * @var AuthorizationCheckerInterface |
||
| 28 | */ |
||
| 29 | private $authorizationChecker; |
||
| 30 | |||
| 31 | /** |
||
| 32 | * @param AuthorizationCheckerInterface $authorizationChecker |
||
| 33 | */ |
||
| 34 | public function __construct(AuthorizationCheckerInterface $authorizationChecker) |
||
| 38 | |||
| 39 | public function userIsLoggedIn() |
||
| 45 | } |
||
| 46 |