Total Complexity | 3 |
Total Lines | 36 |
Duplicated Lines | 0 % |
Coverage | 87.5% |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
8 | class ColorBlockController extends LimsumController |
||
9 | { |
||
10 | |||
11 | /** |
||
12 | * @var string |
||
13 | */ |
||
14 | public static string $withParameterName = 'w'; |
||
15 | |||
16 | /** |
||
17 | * @var string |
||
18 | */ |
||
19 | public static string $heightParameterName = 'h'; |
||
20 | |||
21 | /** |
||
22 | * @var string |
||
23 | */ |
||
24 | public static string $colorParameterName = 'c'; |
||
25 | |||
26 | /** |
||
27 | * @param string $extension |
||
28 | * @param Request $request |
||
29 | * |
||
30 | * @return mixed |
||
31 | */ |
||
32 | 2 | public function __invoke(string $extension, Request $request) |
|
46 |