| 1 | <?php |
||
| 5 | class BlackList extends AbstractAccessList |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * BlackList constructor. |
||
| 9 | * |
||
| 10 | * @param $request |
||
| 11 | */ |
||
| 12 | 11 | public function __construct($request) |
|
| 16 | |||
| 17 | /** |
||
| 18 | * @throws \Exception |
||
| 19 | * |
||
| 20 | * @return bool |
||
| 21 | */ |
||
| 22 | 6 | public function isBlackListed(): bool |
|
| 28 | |||
| 29 | /** |
||
| 30 | * @throws \Exception |
||
| 31 | * |
||
| 32 | * @return bool |
||
| 33 | */ |
||
| 34 | 7 | public function isUsernameBlackListed(): bool |
|
| 39 | |||
| 40 | /** |
||
| 41 | * @throws \Exception |
||
| 42 | * |
||
| 43 | * @return bool |
||
| 44 | */ |
||
| 45 | 7 | public function isUserIdBlackListed(): bool |
|
| 50 | |||
| 51 | /** |
||
| 52 | * @throws \Exception |
||
| 53 | * |
||
| 54 | * @return bool |
||
| 55 | */ |
||
| 56 | 7 | public function isEmailBlackListed() |
|
| 60 | } |
||
| 61 |