Test Failed
Pull Request — master (#7)
by David
12:06
created

TokenNotFoundCartEvent::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 1 Features 0
Metric Value
cc 1
eloc 0
c 1
b 1
f 0
nc 1
nop 0
dl 0
loc 2
rs 10
1
<?php
2
3
namespace GGGGino\SkuskuCartBundle\Event;
4
5
use Symfony\Component\EventDispatcher\Event;
6
use Symfony\Component\HttpFoundation\Response;
7
8
/**
9
 * Class TokenNotFoundCartEvent
10
 * @package GGGGino\SkuskuCartBundle\Event
11
 */
12
class TokenNotFoundCartEvent extends Event
13
{
14
    protected $response;   
15
16
    /**
17
     * @param string $test
18
     */
19
    public function __construct()
20
    {
21
22
    }
23
24
    public function setResponse($response)
25
    {
26
        $this->response = $response;
27
    }    
28
29
    public function getResponse()
30
    {
31
        return $this->response;
32
    }    
33
34
}
35