Skip to content

Commit

Permalink
feature #34916 [DI] Add support for defining method calls in InlineSe…
Browse files Browse the repository at this point in the history
…rviceConfigurator (Lctrs)

This PR was squashed before being merged into the 5.1-dev branch.

Discussion
----------

[DI] Add support for defining method calls in InlineServiceConfigurator

| Q             | A
| ------------- | ---
| Branch?       | master
| Bug fix?      | no
| New feature?  | yes
| Deprecations? | no
| Tickets       |
| License       | MIT
| Doc PR        | N/A

Commits
-------

5af6e21 [DI] Add support for defining method calls in InlineServiceConfigurator
  • Loading branch information
nicolas-grekas committed Dec 13, 2019
2 parents 9393c5d + 5af6e21 commit a6d1567
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/Symfony/Component/DependencyInjection/CHANGELOG.md
Expand Up @@ -5,6 +5,7 @@ CHANGELOG
-----

* added support to autowire public typed properties in php 7.4
* added support for defining method calls, a configurator, and property setters in `InlineServiceConfigurator`

5.0.0
-----
Expand Down
Expand Up @@ -23,10 +23,13 @@ class InlineServiceConfigurator extends AbstractConfigurator
use Traits\ArgumentTrait;
use Traits\AutowireTrait;
use Traits\BindTrait;
use Traits\CallTrait;
use Traits\ConfiguratorTrait;
use Traits\FactoryTrait;
use Traits\FileTrait;
use Traits\LazyTrait;
use Traits\ParentTrait;
use Traits\PropertyTrait;
use Traits\TagTrait;

public function __construct(Definition $definition)
Expand Down

0 comments on commit a6d1567

Please sign in to comment.