Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
19 | public static function allowedParameters() { |
||
20 | return [ |
||
21 | 'height' => [ 'type' => 'int', 'label' => wfMessage( 'cargo-viewdata-heightparam' )->parse() ], |
||
22 | 'width' => [ 'type' => 'int', 'label' => wfMessage( 'cargo-viewdata-widthparam' )->parse() ], |
||
23 | 'icon' => [ 'type' => 'string' ], |
||
24 | 'zoom' => [ 'type' => 'int' ] |
||
25 | ]; |
||
26 | } |
||
27 | |||
47 |