You are here

private property GraphvizDumper::$options in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/dependency-injection/Dumper/GraphvizDumper.php \Symfony\Component\DependencyInjection\Dumper\GraphvizDumper::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\Dumper

Code

private $options = array(
  'graph' => array(
    'ratio' => 'compress',
  ),
  'node' => array(
    'fontsize' => 11,
    'fontname' => 'Arial',
    'shape' => 'record',
  ),
  'edge' => array(
    'fontsize' => 9,
    'fontname' => 'Arial',
    'color' => 'grey',
    'arrowhead' => 'open',
    'arrowsize' => 0.5,
  ),
  'node.instance' => array(
    'fillcolor' => '#9999ff',
    'style' => 'filled',
  ),
  'node.definition' => array(
    'fillcolor' => '#eeeeee',
  ),
  'node.missing' => array(
    'fillcolor' => '#ff9999',
    'style' => 'filled',
  ),
);