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