Completed
Push — master ( b80c11...1d22e2 )
by Ma
09:24
created

Module   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 1
c 1
b 0
f 0
dl 0
loc 11
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A getConfig() 0 6 1
1
<?php
2
3
/**
4
 * Aist Console (http://mateuszsitek.com/projects/console)
5
 *
6
 * @copyright Copyright (c) 2017 DIGITAL WOLVES LTD (http://digitalwolves.ltd) All rights reserved.
7
 * @license   http://opensource.org/licenses/BSD-3-Clause BSD-3-Clause
8
 */
9
10
namespace Aist\Console;
11
12
class Module
13
{
14
    /**
15
     * {@inheritDoc}
16
     */
17
    public function getConfig()
18
    {
19
        $provider = new ConfigProvider();
20
21
        return [
22
            'service_manager' => $provider->getDependencies(),
23
        ];
24
    }
25
}
26