Completed
Push — master ( d9bb59...93d46a )
by Alexander
02:22
created

Module   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 16
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 13
Bugs 0 Features 3
Metric Value
wmc 2
c 13
b 0
f 3
lcom 0
cbo 0
dl 0
loc 16
rs 10

2 Methods

Rating   Name   Duplication   Size   Complexity  
A getConfig() 0 4 1
A getViewHelperConfig() 0 8 1
1
<?php
2
3
namespace AtDataGrid;
4
5
use AtDataGrid\View\Helper\QueryParams;
6
7
class Module
8
{
9
    public function getConfig()
10
    {
11
        return include __DIR__ . '/../config/module.config.php';
12
    }
13
14
    public function getViewHelperConfig()
15
    {
16
        return [
17
            'invokables' => [
18
                'queryParams' => QueryParams::class,
19
            ],
20
        ];
21
    }
22
}