Passed
Push — master ( d75f4a...f59e4f )
by Alexander
05:06
created

TestInjectionWidget   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 17
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 5
c 1
b 0
f 0
dl 0
loc 17
rs 10
wmc 3
1
<?php
2
3
4
namespace Yiisoft\Widget\Tests\Stubs;
5
6
use Yiisoft\Widget\Widget;
7
8
class TestInjectionWidget extends Widget
9
{
10
    private Injectable $injectable;
11
12
    public function __construct(Injectable $injectable)
13
    {
14
        $this->injectable = $injectable;
15
    }
16
17
    public function getInjectable(): Injectable
18
    {
19
        return $this->injectable;
20
    }
21
22
    protected function run(): string
23
    {
24
        return 'test';
25
    }
26
}
27