1 | <?php |
||
5 | class Notifier |
||
6 | { |
||
7 | /** |
||
8 | * @var Transport |
||
9 | */ |
||
10 | private $transport; |
||
11 | |||
12 | /** |
||
13 | * @param Transport $transport |
||
14 | */ |
||
15 | 6 | public function __construct(Transport $transport) |
|
19 | |||
20 | /** |
||
21 | * @param Notification $notification |
||
22 | * @return void |
||
23 | */ |
||
24 | 3 | public function send(Notification $notification) |
|
28 | |||
29 | /** |
||
30 | * @return Notifications |
||
31 | */ |
||
32 | 3 | public function getCurrentNotifications() |
|
36 | } |
||
37 |