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

TestInjectionWidget::getInjectable()   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
cc 1
eloc 1
c 1
b 0
f 0
nc 1
nop 0
dl 0
loc 3
rs 10
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