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

WebViewEvent   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

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

2 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
A getView() 0 3 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Yiisoft\View\Event\WebView;
6
7
use Yiisoft\View\WebView;
8
9
/**
10
 * @internal `WebViewEvent` represents events triggered by the {@see WebView} component.
11
 */
12
abstract class WebViewEvent
13
{
14
    private WebView $view;
15
16 27
    final public function __construct(WebView $view)
17
    {
18 27
        $this->view = $view;
19 27
    }
20
21 5
    final public function getView(): WebView
22
    {
23 5
        return $this->view;
24
    }
25
}
26