Conditions | 2 |
Paths | 2 |
Total Lines | 8 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
13 | 2 | public function process($parameters, $fileName, $env, $date) |
|
14 | { |
||
15 | 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)); |
|
16 | 2 | foreach ($parameters as $key => $value) { |
|
17 | 2 | $content .= sprintf("define('%s', %s);\n", $key, $this->serialize($value)); |
|
18 | 2 | }; |
|
19 | 2 | file_put_contents($fileName, $content); |
|
20 | 2 | } |
|
21 | |||
49 | } |