Conditions | 3 |
Paths | 4 |
Total Lines | 12 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 3.072 |
Changes | 0 |
1 | <?php |
||
13 | 2 | public function process($parameters, $fileName, $env, $date = null) |
|
14 | { |
||
15 | 2 | if (is_null($date)) { |
|
16 | $date = time(); |
||
17 | } |
||
18 | |||
19 | 2 | $content = sprintf("<?php\n/** This file is auto-generated during the build process of '%s' environment at %s **/\n", $env, date(DATE_ATOM, $date)); |
|
20 | 2 | foreach ($parameters as $key => $value) { |
|
21 | 2 | $content .= sprintf("define('%s', %s);\n", $key, $this->serialize($value)); |
|
22 | 2 | }; |
|
23 | 2 | file_put_contents($fileName, $content); |
|
24 | 2 | } |
|
25 | |||
53 | } |