| Total Complexity | 4 | 
| Total Lines | 35 | 
| Duplicated Lines | 0 % | 
| Changes | 0 | ||
| 1 | <?php | ||
| 12 | class AssetsRequest implements RequestInterface | ||
| 13 | { | ||
| 14 | |||
| 15 | /** | ||
| 16 | * Returns the api request name | ||
| 17 | * | ||
| 18 | * @return string | ||
| 19 | */ | ||
| 20 | public function getMethod() | ||
| 23 | } | ||
| 24 | |||
| 25 | /** | ||
| 26 | * @return string | ||
| 27 | */ | ||
| 28 | public function getVisibility() | ||
| 29 |     { | ||
| 30 | return VisibilityEnum::VISIBILITY_PUBLIC; | ||
| 31 | } | ||
| 32 | |||
| 33 | /** | ||
| 34 | * @return array | ||
| 35 | */ | ||
| 36 | public function getRequestData() | ||
| 39 | } | ||
| 40 | |||
| 41 | /** | ||
| 42 | * @return string | ||
| 43 | */ | ||
| 44 | public function getResponseClassName() | ||
| 47 | } | ||
| 48 | } | ||
| 49 |