Passed
Push — master ( a5fb1c...659b35 )
by Anatoly
01:04 queued 10s
created

AnnotationDirectoryLoader::load()   A

Complexity

Conditions 3
Paths 4

Size

Total Lines 23
Code Lines 16

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 17
CRAP Score 3

Importance

Changes 3
Bugs 0 Features 0
Metric Value
cc 3
eloc 16
c 3
b 0
f 0
nc 4
nop 0
dl 0
loc 23
ccs 17
cts 17
cp 1
crap 3
rs 9.7333
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
 * AnnotationDirectoryLoader
16
 *
17
 * @deprecated 2.6.0 The loader will be removed at the near time. Please use the `DescriptorDirectoryLoader`.
18
 */
19
class AnnotationDirectoryLoader extends DescriptorDirectoryLoader
20
{
21
}
22