Completed
Push — 4.0 ( cafdfc...affd8b )
by Marco
02:49
created

DispatcherEvent::getDispatcher()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 0
Metric Value
dl 0
loc 5
ccs 2
cts 2
cp 1
rs 9.4285
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 0
crap 1
1
<?php namespace Comodojo\Dispatcher\Events;
2
3
use \Comodojo\Foundation\Events\AbstractEvent;
4
use \Comodojo\Dispatcher\Dispatcher;
5
6
/**
7
 * @package     Comodojo Dispatcher
8
 * @author      Marco Giovinazzi <[email protected]>
9
 * @author      Marco Castiello <[email protected]>
10
 * @license     GPL-3.0+
11
 *
12
 * LICENSE:
13
 *
14
 * This program is free software: you can redistribute it and/or modify
15
 * it under the terms of the GNU Affero General Public License as
16
 * published by the Free Software Foundation, either version 3 of the
17
 * License, or (at your option) any later version.
18
 *
19
 * This program is distributed in the hope that it will be useful,
20
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22
 * GNU Affero General Public License for more details.
23
 *
24
 * You should have received a copy of the GNU Affero General Public License
25
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
26
 */
27
28
class DispatcherEvent extends AbstractEvent {
29
30
    protected $dispatcher;
31
32 1
    public function __construct( Dispatcher $dispatcher ) {
33
34 1
        parent::__construct('dispatcher');
35
36 1
        $this->dispatcher = $dispatcher;
37
38 1
    }
39
40 1
    public function getDispatcher() {
41
42 1
        return $this->dispatcher;
43
44
    }
45
46
}
47