| 1 | <?php |
||
| 18 | class UserAccountCheckerManager |
||
| 19 | { |
||
| 20 | /** |
||
| 21 | * @var UserAccountChecker[] |
||
| 22 | */ |
||
| 23 | private $checkers = []; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @param UserAccountChecker $checker |
||
| 27 | */ |
||
| 28 | public function add(UserAccountChecker $checker) |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @param Authorization $authorization |
||
| 35 | */ |
||
| 36 | public function check(Authorization $authorization) |
||
| 42 | } |
||
| 43 |