Completed
Pull Request — master (#16)
by Nikola
01:25
created

Main   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A doSomething() 0 4 1
1
<?php
2
3
namespace Go\Symfony\GoAopBundle\Tests\TestProject\Application;
4
5
use Go\Symfony\GoAopBundle\Tests\TestProject\Annotation as Aop;
6
7
class Main
8
{
9
    /**
10
     * @Aop\Loggable()
11
     */
12
    public function doSomething()
13
    {
14
15
    }
16
}
17