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

AnnotationDirectoryLoader::findAnnotations()   A

Complexity

Conditions 3
Paths 3

Size

Total Lines 22
Code Lines 12

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 14
CRAP Score 3

Importance

Changes 3
Bugs 0 Features 0
Metric Value
cc 3
eloc 12
c 3
b 0
f 0
nc 3
nop 1
dl 0
loc 22
ccs 14
cts 14
cp 1
crap 3
rs 9.8666
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