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

Module   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 2
Bugs 0 Features 0
Metric Value
wmc 1
lcom 0
cbo 0
dl 0
loc 14
rs 10
c 2
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A getConfig() 0 11 1
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