AspectKernel::configureAop()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
eloc 1
nc 1
nop 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\Zend\Framework\Kernel;
12
13
14
use Go\Core\AspectContainer;
15
16
/**
17
 * Aspect kernel class
18
 */
19
class AspectKernel extends \Go\Core\AspectKernel
20
{
21
22
    /**
23
     * Configure an AspectContainer with advisors, aspects and pointcuts
24
     *
25
     * @param AspectContainer $container
26
     *
27
     * @return void
28
     */
29
    protected function configureAop(AspectContainer $container)
30
    {
31
    }
32
}
33