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

ErrorHandling::__invoke()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
dl 0
loc 4
ccs 0
cts 3
cp 0
rs 10
c 0
b 0
f 0
cc 1
eloc 1
nc 1
nop 0
crap 2
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
}