Passed
Push — master ( 8038c9...c43533 )
by Freddie
02:59
created

DemoModule   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 5
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
dl 0
loc 5
ccs 2
cts 2
cp 1
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A getServiceDefinitionsDirectory() 0 3 1
1
<?php declare(strict_types = 1);
2
3
/**
4
 * This file is part of the Simplex package.
5
 *
6
 * (c) Freddie Frantzen <[email protected]>
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
namespace Simplex\Quickstart\Module\Demo;
12
13
use Simplex\Module;
14
15
class DemoModule implements Module
16
{
17 1
    public function getServiceDefinitionsDirectory(): string
18
    {
19 1
        return __DIR__ . '/DependencyInjection';
20
    }
21
}
22