Passed
Push — master ( 371fc8...7c0cfc )
by Anton
03:02
created

GuardInterceptor   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 4
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 1
eloc 1
c 1
b 0
f 0
dl 0
loc 4
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A process() 0 2 1
1
<?php
2
/**
3
 * Spiral Framework.
4
 *
5
 * @license   MIT
6
 * @author    Anton Titov (Wolfy-J)
7
 */
8
declare(strict_types=1);
9
10
namespace Spiral\Domain;
11
12
use Spiral\Core\CoreInterceptorInterface;
13
use Spiral\Core\CoreInterface;
14
15
class GuardInterceptor implements CoreInterceptorInterface
16
{
17
    public function process(string $controller, string $action, array $parameters, CoreInterface $core)
18
    {
19
        // TODO: Implement process() method.
20
    }
21
}