Skip to content

Commit

Permalink
readme.MD
Browse files Browse the repository at this point in the history
  • Loading branch information
ProklUng committed Jul 30, 2021
1 parent b5f0d85 commit 5941e7c
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion readme.MD
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,17 @@ $kernel = container()->get('kernel');
делегированными контейнерами.

```php
$kernel = delegatedContainer()->get('my_module_id.service');
$moduleService = delegatedContainer()->get('my_module_id.service');
```

В контейнере делегированный контейнер помечается тэгом `delegated.container` (их может быть сколь угодно много):

```yaml
module_notifier_container:
class: Symfony\Component\DependencyInjection\ContainerInterface
factory: ['Proklung\Notifier\DI\Services', 'getInstance']
tags:
- { name: 'delegated.container' }
```

Делегированный контейнер - автономный контейнер, сформированные в модуле, плагине и тому подобных местах.
Expand Down

0 comments on commit 5941e7c

Please sign in to comment.