| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 16 | public function draw(ChartOptionsInterface $options, $optionsName) |
||
| 17 | { |
||
| 18 | $this->removeRecursivelyNullValue($options); |
||
| 19 | |||
| 20 | /* @var array $options */ |
||
| 21 | $this->removeRecursivelyEmptyArray($options); |
||
| 22 | |||
| 23 | $options = $this->renameRecursivelyKeys($options); |
||
| 24 | |||
| 25 | return "var $optionsName = ".json_encode($options).";\n"; |
||
| 26 | } |
||
| 27 | } |
||
| 28 |