Passed
Push — master ( ff0e1a...d70f62 )
by Mr
02:29
created

Action   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

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

2 Methods

Rating   Name   Duplication   Size   Complexity  
A handleError() 0 3 1
A getValidator() 0 3 1
1
<?php declare(strict_types=1);
2
/**
3
 * This file is part of the daikon-cqrs/boot project.
4
 *
5
 * For the full copyright and license information, please view the LICENSE
6
 * file that was distributed with this source code.
7
 */
8
9
namespace Daikon\Boot\Middleware\Action;
10
11
use Daikon\Boot\Middleware\Action\ActionInterface;
12
use Daikon\Validize\Validator\ValidatorInterface;
13
use Fig\Http\Message\StatusCodeInterface;
14
use Psr\Http\Message\ServerRequestInterface;
15
16
abstract class Action implements ActionInterface, StatusCodeInterface
17
{
18
    public function getValidator(ServerRequestInterface $request): ?ValidatorInterface
19
    {
20
        return null;
21
    }
22
23
    public function handleError(ServerRequestInterface $request): ServerRequestInterface
24
    {
25
        return $request;
26
    }
27
}
28