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

GuardInterceptor::process()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 0
c 1
b 0
f 0
dl 0
loc 2
rs 10
cc 1
nc 1
nop 4
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
}