Completed
Push — master ( 646044...5dbf7b )
by Roj
02:47
created

ArrayTransport::send()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 3
CRAP Score 1

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 4
ccs 3
cts 3
cp 1
rs 10
cc 1
eloc 2
nc 1
nop 1
crap 1
1
<?php
2
3
namespace Rojtjo\Notifier\Transports;
4
5
use Rojtjo\Notifier\Notification;
6
use Rojtjo\Notifier\Transport;
7
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)
20
    {
21 3
        $this->notifications[] = $notification;
22 3
    }
23
24
    /**
25
     * @return array
26
     */
27 3
    public function getNotifications()
28
    {
29 3
        return $this->notifications;
30
    }
31
}
32