Passed
Pull Request — master (#75)
by Anatoly
02:19
created

CollectableFileLoader::attach()   A

Complexity

Conditions 4
Paths 4

Size

Total Lines 18
Code Lines 9

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 10
CRAP Score 4

Importance

Changes 2
Bugs 0 Features 0
Metric Value
cc 4
eloc 9
c 2
b 0
f 0
nc 4
nop 1
dl 0
loc 18
ccs 10
cts 10
cp 1
crap 4
rs 9.9666
1
<?php declare(strict_types=1);
2
3
/**
4
 * It's free open-source software released under the MIT License.
5
 *
6
 * @author Anatoly Fenric <[email protected]>
7
 * @copyright Copyright (c) 2018, Anatoly Fenric
8
 * @license https://github.com/sunrise-php/http-router/blob/master/LICENSE
9
 * @link https://github.com/sunrise-php/http-router
10
 */
11
12
namespace Sunrise\Http\Router\Loader;
13
14
/**
15
 * CollectableFileLoader
16
 *
17
 * @deprecated 2.10.0 Use the ConfigLoader class.
18
 */
19
class CollectableFileLoader extends ConfigLoader
20
{
21
}
22