@@ -27,9 +27,9 @@ |
||
27 | 27 | public function validates(Configuration $config) |
28 | 28 | { |
29 | 29 | // graphviz |
30 | - if($config->getLogging()->getChart('bubbles')) { |
|
30 | + if ($config->getLogging()->getChart('bubbles')) { |
|
31 | 31 | $graphviz = new Graphviz(); |
32 | - if(!$graphviz->isAvailable()) { |
|
32 | + if (!$graphviz->isAvailable()) { |
|
33 | 33 | throw new \RuntimeException('Graphviz not installed'); |
34 | 34 | } |
35 | 35 | } |
@@ -35,7 +35,7 @@ |
||
35 | 35 | */ |
36 | 36 | public function getImage($dotContent) { |
37 | 37 | |
38 | - if(!$this->isAvailable()) { |
|
38 | + if (!$this->isAvailable()) { |
|
39 | 39 | throw new \RuntimeException('Graphviz not installed'); |
40 | 40 | } |
41 | 41 |