Passed
Push — master ( 4b1837...4f768a )
by Hector Luis
21:01
created

Base::inDebugMode()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 1
c 1
b 0
f 0
dl 0
loc 3
rs 10
cc 1
nc 1
nop 1
1
<?php
2
declare(strict_types=1);
3
4
/**
5
 * Base Configuration Class
6
 * @category    Ticaje
7
 * @package     Ticaje_Dummy
8
 * @author      Hector Luis Barrientos <[email protected]>
9
 */
10
11
namespace Ticaje\Dummy\Configuration;
12
13
use Ticaje\Configuration\Setting\Base as ParentClass;
14
15
/**
16
 * Class Base
17
 * @package Ticaje\Dummy\Configuration
18
 */
19
abstract class Base extends ParentClass implements ConfigInterface
20
{
21
    /**
22
     * @param $configPath
23
     * @return mixed
24
     */
25
    abstract protected function getLocalPath($configPath);
26
}
27