AspectLaravelKernel   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 0
dl 0
loc 9
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A configureAop() 0 3 1
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