Completed
Pull Request — master (#364)
by Alessandro
04:31
created

Event   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 24
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
wmc 2
lcom 0
cbo 1
dl 0
loc 24
ccs 0
cts 8
cp 0
rs 10
c 0
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
A setException() 0 4 1
A getException() 0 4 1
1
<?php
2
3
/*
4
 * This file is part of the FOSHttpCache package.
5
 *
6
 * (c) FriendsOfSymfony <http://friendsofsymfony.github.com/>
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace FOS\HttpCache;
13
14
use Symfony\Component\EventDispatcher\Event as BaseEvent;
15
16
class Event extends BaseEvent
17
{
18
    private $exception;
19
20
    /**
21
     * Set exception.
22
     *
23
     * @param \Exception $exception
24
     */
25
    public function setException(\Exception $exception)
26
    {
27
        $this->exception = $exception;
28
    }
29
30
    /**
31
     * Get exception.
32
     *
33
     * @return \Exception
34
     */
35
    public function getException()
36
    {
37
        return $this->exception;
38
    }
39
}
40