GraphvizDumper::$options
Type: options
File
-
vendor/
symfony/ dependency-injection/ Dumper/ GraphvizDumper.php, line 36
Class
- GraphvizDumper
- GraphvizDumper dumps a service container as a graphviz file.
Namespace
Symfony\Component\DependencyInjection\DumperCode
private array $options = [
'graph' => [
'ratio' => 'compress',
],
'node' => [
'fontsize' => '11',
'fontname' => 'Arial',
'shape' => 'record',
],
'edge' => [
'fontsize' => '9',
'fontname' => 'Arial',
'color' => 'grey',
'arrowhead' => 'open',
'arrowsize' => '0.5',
],
'node.instance' => [
'fillcolor' => '#9999ff',
'style' => 'filled',
],
'node.definition' => [
'fillcolor' => '#eeeeee',
],
'node.missing' => [
'fillcolor' => '#ff9999',
'style' => 'filled',
],
];