Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. GraphvizDumper.php

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\Dumper

Code

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',
    ],
];

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal