Conditions | 3 |
Paths | 4 |
Total Lines | 12 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 12 |
Changes | 0 |
1 | <?php |
||
13 | public function process($parameters, $fileName, $env, $date = null) |
||
14 | { |
||
15 | if (is_null($date)) { |
||
16 | $date = time(); |
||
17 | } |
||
18 | |||
19 | $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 | foreach ($parameters as $key => $value) { |
||
21 | $content .= sprintf("define('%s', %s);\n", $key, $this->serialize($value)); |
||
22 | }; |
||
23 | file_put_contents($fileName, $content); |
||
24 | } |
||
25 | |||
53 | } |