Passed
Push — master ( 43bacd...21e282 )
by Alexander
02:43
created

ViewEvent::getView()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 1
Bugs 1 Features 0
Metric Value
eloc 1
c 1
b 1
f 0
dl 0
loc 3
ccs 2
cts 2
cp 1
rs 10
cc 1
nc 1
nop 0
crap 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Yiisoft\View\Event\View;
6
7
use Yiisoft\View\View;
8
9
/**
10
 * @internal `ViewEvent` represents events triggered by the {@see View} component.
11
 */
12
abstract class ViewEvent
13
{
14
    private View $view;
15
16 2
    final public function __construct(View $view)
17
    {
18 2
        $this->view = $view;
19 2
    }
20
21 2
    final public function getView(): View
22
    {
23 2
        return $this->view;
24
    }
25
}
26