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

AnnotationDirectoryLoader::fetchAnnotations()   A

Complexity

Conditions 3
Paths 3

Size

Total Lines 17
Code Lines 7

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 8
CRAP Score 3

Importance

Changes 2
Bugs 0 Features 0
Metric Value
eloc 7
c 2
b 0
f 0
dl 0
loc 17
ccs 8
cts 8
cp 1
rs 10
cc 3
nc 3
nop 1
crap 3
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