Passed
Push — master ( 8bea99...a169e2 )
by Paweł
02:07
created

KernelAwareCommand   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 3
c 1
b 0
f 0
dl 0
loc 8
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A setKernel() 0 3 1
1
<?php
2
3
namespace pjpawel\LightApi\Command\Internal;
4
5
use pjpawel\LightApi\Command\Command;
6
use pjpawel\LightApi\Command\Input\InputInterface;
7
use pjpawel\LightApi\Kernel;
8
9
abstract class KernelAwareCommand extends Command
10
{
11
12
    protected Kernel $kernel;
13
14
    public function setKernel(Kernel $kernel): void
15
    {
16
        $this->kernel = $kernel;
17
    }
18
}