Total Complexity | 2 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | class Notifications 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 | * Returns details about a notification. |
||
29 | * |
||
30 | * @return NotificationResponse |
||
31 | */ |
||
32 | public function get($notificationUuid) |
||
42 |