1 | <?php |
||
14 | class ClientController extends BaseController |
||
15 | { |
||
16 | /** |
||
17 | * Returns the Client URL. |
||
18 | * |
||
19 | * @param Request $request |
||
20 | * |
||
21 | * @return Response |
||
22 | */ |
||
23 | public function getUrl(Request $request) |
||
29 | |||
30 | /** |
||
31 | * Get Client View. |
||
32 | * |
||
33 | * @return Response |
||
34 | */ |
||
35 | public function showClient(): Response |
||
41 | |||
42 | /** |
||
43 | * Get HabboWEB Ads Interstitial. |
||
44 | * |
||
45 | * @param string $interstitialType |
||
46 | * |
||
47 | * @return Response |
||
48 | */ |
||
49 | public function getInterstitial(string $interstitialType): Response |
||
53 | } |
||
54 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.