services9.dot 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. digraph sc {
  2. ratio="compress"
  3. node [fontsize="11" fontname="Arial" shape="record"];
  4. edge [fontsize="9" fontname="Arial" color="grey" arrowhead="open" arrowsize="0.5"];
  5. node_foo [label="foo (alias_for_foo)\nBar\\FooClass\n", shape=record, fillcolor="#eeeeee", style="filled"];
  6. node_foo_baz [label="foo.baz\nBazClass\n", shape=record, fillcolor="#eeeeee", style="filled"];
  7. node_bar [label="bar\nBar\\FooClass\n", shape=record, fillcolor="#eeeeee", style="filled"];
  8. node_foo_bar [label="foo_bar\nBar\\FooClass\n", shape=record, fillcolor="#eeeeee", style="dotted"];
  9. node_method_call1 [label="method_call1\nBar\\FooClass\n", shape=record, fillcolor="#eeeeee", style="filled"];
  10. node_foo_with_inline [label="foo_with_inline\nFoo\n", shape=record, fillcolor="#eeeeee", style="filled"];
  11. node_inlined [label="inlined\nBar\n", shape=record, fillcolor="#eeeeee", style="filled"];
  12. node_baz [label="baz\nBaz\n", shape=record, fillcolor="#eeeeee", style="filled"];
  13. node_request [label="request\nRequest\n", shape=record, fillcolor="#eeeeee", style="filled"];
  14. node_configurator_service [label="configurator_service\nConfClass\n", shape=record, fillcolor="#eeeeee", style="filled"];
  15. node_configured_service [label="configured_service\nstdClass\n", shape=record, fillcolor="#eeeeee", style="filled"];
  16. node_decorated [label="decorated\nstdClass\n", shape=record, fillcolor="#eeeeee", style="filled"];
  17. node_decorator_service [label="decorator_service\nstdClass\n", shape=record, fillcolor="#eeeeee", style="filled"];
  18. node_decorator_service_with_name [label="decorator_service_with_name\nstdClass\n", shape=record, fillcolor="#eeeeee", style="filled"];
  19. node_deprecated_service [label="deprecated_service\nstdClass\n", shape=record, fillcolor="#eeeeee", style="filled"];
  20. node_new_factory [label="new_factory\nFactoryClass\n", shape=record, fillcolor="#eeeeee", style="filled"];
  21. node_factory_service [label="factory_service\nBar\n", shape=record, fillcolor="#eeeeee", style="filled"];
  22. node_new_factory_service [label="new_factory_service\nFooBarBaz\n", shape=record, fillcolor="#eeeeee", style="filled"];
  23. node_service_from_static_method [label="service_from_static_method\nBar\\FooClass\n", shape=record, fillcolor="#eeeeee", style="filled"];
  24. node_service_container [label="service_container\nSymfony\\Component\\DependencyInjection\\ContainerBuilder\n", shape=record, fillcolor="#9999ff", style="filled"];
  25. node_foo2 [label="foo2\n\n", shape=record, fillcolor="#ff9999", style="filled"];
  26. node_foo3 [label="foo3\n\n", shape=record, fillcolor="#ff9999", style="filled"];
  27. node_foobaz [label="foobaz\n\n", shape=record, fillcolor="#ff9999", style="filled"];
  28. node_foo -> node_foo_baz [label="" style="filled"];
  29. node_foo -> node_service_container [label="" style="filled"];
  30. node_foo -> node_foo_baz [label="" style="dashed"];
  31. node_foo -> node_bar [label="setBar()" style="dashed"];
  32. node_bar -> node_foo_baz [label="" style="filled"];
  33. node_method_call1 -> node_foo [label="setBar()" style="dashed"];
  34. node_method_call1 -> node_foo2 [label="setBar()" style="dashed"];
  35. node_method_call1 -> node_foo3 [label="setBar()" style="dashed"];
  36. node_method_call1 -> node_foobaz [label="setBar()" style="dashed"];
  37. node_foo_with_inline -> node_inlined [label="setBar()" style="dashed"];
  38. node_inlined -> node_baz [label="setBaz()" style="dashed"];
  39. node_baz -> node_foo_with_inline [label="setFoo()" style="dashed"];
  40. node_configurator_service -> node_baz [label="setFoo()" style="dashed"];
  41. }