WebViewEvent::__construct()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 1
CRAP Score 1

Importance

Changes 1
Bugs 1 Features 0
Metric Value
eloc 0
c 1
b 1
f 0
dl 0
loc 3
ccs 1
cts 1
cp 1
rs 10
cc 1
nc 1
nop 1
crap 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 53
    final public function __construct(
15
        private WebView $view
16
    ) {
17 53
    }
18
19 5
    final public function getView(): WebView
20
    {
21 5
        return $this->view;
22
    }
23
}
24