Conditions | 2 |
Paths | 1 |
Total Lines | 16 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
81 | protected function renderTemplate(string $password): string |
||
82 | { |
||
83 | $content = file_get_contents($this->getTemplateFileName()) ?: ''; |
||
84 | |||
85 | return str_replace( |
||
86 | [ |
||
87 | '{ssid}', |
||
88 | '{hex}', |
||
89 | '{key}', |
||
90 | ], |
||
91 | [ |
||
92 | $this->ssid, |
||
93 | to_hex($this->ssid), |
||
94 | $password, |
||
95 | ], |
||
96 | $content |
||
97 | ); |
||
100 |