| Conditions | 1 |
| Paths | 1 |
| Total Lines | 17 |
| Code Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 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 | 'site' => [ |
||
| 38 | 'name' => 'site', |
||
| 39 | 'type' => Type::string(), |
||
| 40 | 'description' => 'The site handle to resolve a redirect for.', |
||
| 41 | ], |
||
| 42 | 'siteId' => [ |
||
| 43 | 'name' => 'siteId', |
||
| 44 | 'type' => Type::int(), |
||
| 45 | 'description' => 'The siteId to resolve a redirect for.', |
||
| 46 | ], |
||
| 50 |