Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
29 | public static function getArguments(): array |
||
30 | { |
||
31 | return [ |
||
32 | 'uri' => [ |
||
33 | 'name' => 'uri', |
||
34 | 'type' => Type::string(), |
||
35 | 'description' => 'The URI to resolve a redirect for.' |
||
36 | ], |
||
37 | 'siteId' => [ |
||
38 | 'name' => 'siteId', |
||
39 | 'type' => Type::int(), |
||
40 | 'description' => 'The siteId to resolve a redirect for.' |
||
41 | ], |
||
45 |