Completed
Push — master ( e44d2f...03d74f )
by Westin
10:23
created

Module::getConfig()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 10
Code Lines 5

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 10
rs 9.4285
c 0
b 0
f 0
cc 1
eloc 5
nc 1
nop 0
1
<?php
2
declare(strict_types=1);
3
4
namespace WShafer\PSR11MonoLog;
5
6
class Module
7
{
8
    public function getConfig()
9
    {
10
        return [
11
            'service_manager' => [
12
                'factories' => [
13
                    ChannelChanger::class => ChannelChangerFactory::class
14
                ]
15
            ]
16
        ];
17
    }
18
}
19