Failed Conditions
Push — metadata ( c6c11e...d7114b )
by Michael
02:19
created

SecretRouteTrait   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 1
eloc 2
dl 0
loc 9
rs 10
c 0
b 0
f 0
1
<?php
2
3
namespace Doctrine\Tests\Annotations\Fixtures\Traits;
4
5
use Doctrine\Tests\Annotations\Fixtures\Annotation\Template;
6
use Doctrine\Tests\Annotations\Fixtures\Annotation\Route;
7
8
trait SecretRouteTrait
9
{
10
    /**
11
     * @Route("/secret", name="_secret")
12
     * @Template()
13
     */
14
    public function secretAction()
15
    {
16
        return [];
17
    }
18
}
19