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