Completed
Push — master ( 003c1a...870291 )
by Tomáš
06:24
created

TraitAwareController   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A someAction() 0 3 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Symplify\ControllerAutowire\Tests\CompleteTestSource\Scan;
6
7
use Symplify\ControllerAutowire\Controller\ControllerTrait;
8
9
final class TraitAwareController
10
{
11
    use ControllerTrait;
12
13
    public function someAction()
14
    {
15
    }
16
}
17