Total Complexity | 2 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | class Permissions implements CloudApi |
||
13 | { |
||
14 | |||
15 | /** @var ClientInterface The API client. */ |
||
16 | protected $client; |
||
17 | |||
18 | /** |
||
19 | * Client constructor. |
||
20 | * |
||
21 | * @param ClientInterface $client |
||
22 | */ |
||
23 | public function __construct(ClientInterface $client) |
||
26 | } |
||
27 | |||
28 | /** |
||
29 | * Show all available permissions. |
||
30 | * |
||
31 | * @return PermissionsResponse |
||
32 | */ |
||
33 | public function getPermissions() |
||
38 |