AspectLaravelKernel::configureAop()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
nc 1
nop 1
dl 0
loc 3
rs 10
c 0
b 0
f 0
1
<?php
2
/*
3
 * Go! AOP framework
4
 *
5
 * @copyright Copyright 2016, Lisachenko Alexander <[email protected]>
6
 *
7
 * This source file is subject to the license that is bundled
8
 * with this source code in the file LICENSE.
9
 */
10
11
namespace Go\Laravel\GoAopBridge\Kernel;
12
13
use Go\Core\AspectContainer;
14
use Go\Core\AspectKernel;
15
16
/**
17
 * Laravel aspect kernel class
18
 */
19
class AspectLaravelKernel extends AspectKernel
20
{
21
    /**
22
     * {@inheritdoc}
23
     */
24
    protected function configureAop(AspectContainer $container)
25
    {
26
    }
27
}
28