Completed
Push — master ( d5b9a4...c98174 )
by Westin
09:35
created

Module::getConfig()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 11
Code Lines 6

Duplication

Lines 0
Ratio 0 %

Importance

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