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

Module::getConfig()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 6
rs 9.4285
cc 1
eloc 3
nc 1
nop 0
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