Dev   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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

2 Methods

Rating   Name   Duplication   Size   Complexity  
A define() 0 5 1
A modify() 0 3 1
1
<?php
2
/**
3
 * Part of Cli for CodeIgniter
4
 *
5
 * @author     Kenji Suzuki <https://github.com/kenjis>
6
 * @license    MIT License
7
 * @copyright  2015 Kenji Suzuki
8
 * @link       https://github.com/kenjis/codeigniter-cli
9
 */
10
11
namespace Kenjis\CodeIgniter_Cli\_Config;
12
13
use Aura\Di\Config;
14
use Aura\Di\Container;
15
16
class Dev extends Config
17
{
18
    public function define(Container $di)
19
    {
20
        ini_set('error_reporting', E_ALL);
21
        ini_set('display_errors', true);
22
    }
23
24
    public function modify(Container $di)
25
    {
26
    }
27
}
28