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

KernelAwareCommand::setKernel()   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 1
dl 0
loc 3
rs 10
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
}