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

SessionTransport::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\SessionStore;
7
use Rojtjo\Notifier\Transport;
8
9
class SessionTransport implements Transport
10
{
11
    /**
12
     * @var SessionStore
13
     */
14
    private $session;
15
16
    /**
17
     * @param SessionStore $session
18
     */
19 6
    public function __construct(SessionStore $session)
20
    {
21 6
        $this->session = $session;
22 6
    }
23
24
    /**
25
     * @param Notification $notification
26
     * @return void
27
     */
28 3
    public function send(Notification $notification)
29
    {
30 3
        $this->session->push($notification);
31 3
    }
32
}
33