Dev::modify()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
nc 1
nop 1
dl 0
loc 3
rs 10
c 0
b 0
f 0
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