Passed
Push — master ( 8a12fc...8bc538 )
by Vsevolods
10:30
created

ErrorHandling   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
wmc 1
c 0
b 0
f 0
lcom 0
cbo 1
dl 0
loc 11
rs 10
ccs 0
cts 3
cp 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A __invoke() 0 4 1
1
<?php declare(strict_types = 1);
2
3
namespace Venta\Framework\Kernel\Bootstrap;
4
5
use Venta\Framework\Kernel\AbstractKernelBootstrap;
6
7
/**
8
 * Class ErrorHandling
9
 *
10
 * @package Venta\Framework\Kernel\Bootstrap
11
 */
12
class ErrorHandling extends AbstractKernelBootstrap
13
{
14
    /**
15
     * @inheritDoc
16
     */
17
    public function __invoke()
18
    {
19
20
    }
21
22
}