Test Failed
Pull Request — master (#150)
by Alexander
12:20
created

ViewEvent   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 2
eloc 4
c 1
b 0
f 0
dl 0
loc 12
rs 10

2 Methods

Rating   Name   Duplication   Size   Complexity  
A getView() 0 3 1
A __construct() 0 3 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
    final public function __construct(View $view)
17
    {
18
        $this->view = $view;
19
    }
20
21
    final public function getView(): View
22
    {
23
        return $this->view;
24
    }
25
}
26