Completed
Push — master ( 8f61de...6beb52 )
by Vitaly
02:52
created

Scope::__construct()   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 3
Bugs 1 Features 2
Metric Value
c 3
b 1
f 2
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 declare(strict_types = 1);
2
/**
3
 * Created by PhpStorm.
4
 * User: root
5
 * Date: 27.07.2016
6
 * Time: 1:55.
7
 */
8
namespace samsonframework\container\collection;
9
10
use samsonframework\container\configurator\ScopeConfigurator;
11
12
/**
13
 * Scope collection configurator class.
14
 *
15
 * @see    \samsonframework\container\configurator\ScopeConfigurator
16
 *
17
 * @author Vitaly Egorov <[email protected]>
18
 */
19
class Scope extends ScopeConfigurator implements CollectionAttributeConfiguratorInterface
20
{
21
22
}
23