Skip to content

Latest commit

 

History

History
35 lines (21 loc) · 1004 Bytes

definition.md

File metadata and controls

35 lines (21 loc) · 1004 Bytes
layout
documentation

Definitions

To let PHP-DI know what to inject and where, you have several options:

You can also use several or all these options at the same time if you want to.

If you combine several sources, there are priorities that apply. From the highest priority to the least:

  • Explicit definition on the container (i.e. defined with $container->set())
  • PHP file definitions (if you add several configuration files, then the last one can override entries from the previous ones)
  • Annotations
  • Autowiring

Read more in the Definition overriding documentation

Autowiring

See the dedicated documentation about autowiring.

Annotations

See the dedicated documentation about annotations.

PHP configuration

See the dedicated documentation about PHP definitions.