| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 10 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 21 | 1 | public function initialize($filePath) |
|
| 22 | { |
||
| 23 | 1 | $content = $this->getTemplateContent(); |
|
| 24 | |||
| 25 | 1 | $parameters = $this->getParametersForReplace(); |
|
| 26 | 1 | $replaceParameters = []; |
|
| 27 | 1 | array_walk($parameters, function ($value, $key) use (&$replaceParameters) { |
|
| 28 | 1 | $replaceParameters['%' . $key . '%'] = $value; |
|
| 29 | 1 | }); |
|
| 30 | 1 | $content = strtr($content, $replaceParameters); |
|
| 31 | |||
| 32 | 1 | file_put_contents($filePath, $content); |
|
| 33 | 1 | } |
|
| 34 | |||
| 52 |