Conditions | 2 |
Paths | 2 |
Total Lines | 13 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 6 |
Changes | 0 |
1 | <?php |
||
9 | public function write(Action $action) |
||
10 | { |
||
11 | |||
12 | $parameters = json_decode($action->getArguments(), true); |
||
13 | |||
14 | foreach ($this->parameters as $k => $v) { |
||
15 | $parameters[$k] = $this->parameters[$k]; |
||
16 | } |
||
17 | |||
18 | file_put_contents($parameters['file'], $parameters['text']); |
||
19 | |||
20 | return "File written successfully"; |
||
21 | } |
||
22 | |||
33 |