Completed
Push — master ( fa3c04...692093 )
by Vitaly
02:57
created

Controller::toClassMetadata()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 3
CRAP Score 1

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 5
ccs 3
cts 3
cp 1
rs 9.4285
cc 1
eloc 2
nc 1
nop 1
crap 1
1
<?php
2
/**
3
 * Created by PhpStorm.
4
 * User: root
5
 * Date: 27.07.2016
6
 * Time: 1:55.
7
 */
8
namespace samsonframework\container\annotation;
9
10
use samsonframework\container\configurator\ControllerConfigurator;
11
12
/**
13
 * Controller configurator annotation class.
14
 * @see    \samsonframework\container\configurator\ControllerConfigurator
15
 *
16
 * @author Vitaly Egorov <[email protected]>
17
 *
18
 * @Annotation
19
 */
20
class Controller extends ControllerConfigurator
21
{
22
23
}
24