NullError   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 2
Bugs 0 Features 1
Metric Value
eloc 2
c 2
b 0
f 1
dl 0
loc 12
ccs 0
cts 2
cp 0
rs 10
wmc 2

2 Methods

Rating   Name   Duplication   Size   Complexity  
A handle() 0 3 1
A transfer() 0 2 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace BEAR\Sunday\Extension\Error;
6
7
use BEAR\Sunday\Extension\Router\RouterMatch as Request;
8
use Exception;
9
10
final class NullError implements ErrorInterface
11
{
12
    /**
13
     * {@inheritDoc}
14
     */
15
    public function handle(Exception $e, Request $request) // phpcs:disable SlevomatCodingStandard.Exceptions.ReferenceThrowableOnly.ReferencedGeneralException
16
    {
17
        return $this;
18
    }
19
20
    public function transfer(): void
21
    {
22
    }
23
}
24