Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
18 | public function render(State $state) |
||
19 | { |
||
20 | $graph = ''; |
||
21 | $color = static::COMMAND_COLOR; |
||
22 | |||
23 | $graph .= ' node [label=' . $state->getKey() . ',color="",fontcolor="' . $color . '"' . |
||
24 | ',style="",shape="plaintext",fontname="Arial"] ' . |
||
25 | '{ state_' . $state->getKey() . ' } ' . PHP_EOL; |
||
26 | |||
27 | return $graph; |
||
28 | } |
||
29 | } |
||
30 |