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

WebViewEvent::getView()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

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