Passed
Push — master ( 786cae...5fe6af )
by Korotkov
03:49 queued 01:54
created

SecondMiddleware   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 2
eloc 3
dl 0
loc 11
rs 10
c 0
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
A __invoke() 0 3 1
A next() 0 2 1
1
<?php
2
3
namespace App\Containers\Demo\Middleware;
4
5
use Rudra\Router\MiddlewareInterface;
6
use App\Containers\Demo\Tools\HelperTrait;
7
8
class SecondMiddleware implements MiddlewareInterface
9
{
10
    use HelperTrait;
11
12
    public function __invoke(array $chainOfMiddlewares): void
13
    {
14
        $this->info(__CLASS__);
15
    }
16
17
    public function next(array $chainOfMiddlewares): void
18
    {
19
20
    }
21
}
22