Completed
Push — master ( 39c1d7...699dc6 )
by Changwan
06:44
created

NullKernel::execute()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 1
dl 0
loc 3
ccs 0
cts 2
cp 0
crap 2
rs 10
c 0
b 0
f 0
1
<?php
2
namespace Wandu\Foundation\Kernels;
3
4
use Wandu\Foundation\Contracts\KernelInterface;
5
use Wandu\DI\ContainerInterface;
6
7
class NullKernel implements KernelInterface
8
{
9 4
    public function boot(ContainerInterface $app)
10
    {
11 4
    }
12
13
    public function execute(ContainerInterface $app)
14
    {
15
    }
16
17
    public function offsetExists($offset)
18
    {
19
    }
20
21
    public function offsetGet($offset)
22
    {
23
    }
24
25
    public function offsetSet($offset, $value)
26
    {
27
    }
28
29
    public function offsetUnset($offset)
30
    {
31
    }
32
}
33