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

TraitAwareController::someAction()   A

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
c 0
b 0
f 0
rs 10
cc 1
eloc 1
nc 1
nop 0
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