Total Complexity | 2 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
13 | class Configurator |
||
14 | { |
||
15 | |||
16 | /** |
||
17 | * @var string |
||
18 | */ |
||
19 | private $directory; |
||
20 | |||
21 | /** |
||
22 | * Configurator constructor. |
||
23 | * @param $directory |
||
24 | */ |
||
25 | public function __construct($directory) |
||
26 | { |
||
27 | |||
28 | $this->directory = $directory; |
||
29 | } |
||
30 | |||
31 | /** |
||
32 | * @return Config |
||
33 | */ |
||
34 | public function make() |
||
37 | |||
38 | } |
||
40 | } |