1 | <?php |
||
8 | class ArrayTransport implements Transport |
||
9 | { |
||
10 | /** |
||
11 | * @var array |
||
12 | */ |
||
13 | private $notifications = []; |
||
14 | |||
15 | /** |
||
16 | * @param Notification $notification |
||
17 | * @return void |
||
18 | */ |
||
19 | 3 | public function send(Notification $notification) |
|
23 | |||
24 | /** |
||
25 | * @return array |
||
26 | */ |
||
27 | 3 | public function getNotifications() |
|
31 | } |
||
32 |