Module   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
dl 0
loc 11
rs 10
c 0
b 0
f 0
wmc 1
lcom 0
cbo 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A getConfig() 0 8 1
1
<?php
2
3
namespace ExampleModule02;
4
5
use Application;
6
use Webino\Module\AbstractModule;
7
// TODO events
8
use Zend\EventManager\Event as ConfigEvent;
9
10
/**
11
 * Class Module
12
 */
13
class Module extends AbstractModule
14
{
15
    public function getConfig(ConfigEvent $event)
16
    {
17
        return [
18
            'example_module_02' => [
19
                'test_key' => ['example_value'],
20
            ],
21
        ];
22
    }
23
}
24