Skip to content

Commit

Permalink
bug #36392 [DI] add missing property declarations in InlineServiceCon…
Browse files Browse the repository at this point in the history
…figurator (nicolas-grekas)

This PR was merged into the 4.4 branch.

Discussion
----------

[DI] add missing property declarations in InlineServiceConfigurator

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

These are accessed by the traits used by the class.

Commits
-------

a6a4442 [DI] add missing property declarations in InlineServiceConfigurator
  • Loading branch information
nicolas-grekas committed Apr 10, 2020
2 parents 2dd5fe6 + a6a4442 commit ba58c6f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
Expand Up @@ -20,6 +20,7 @@ class AliasConfigurator extends AbstractServiceConfigurator
{
const FACTORY = 'alias';

use Traits\DeprecateTrait;
use Traits\PublicTrait;

public function __construct(ServicesConfigurator $parent, Alias $alias)
Expand Down
Expand Up @@ -29,6 +29,10 @@ class InlineServiceConfigurator extends AbstractConfigurator
use Traits\ParentTrait;
use Traits\TagTrait;

private $id = '[inline]';
private $allowParent = true;
private $path = null;

public function __construct(Definition $definition)
{
$this->definition = $definition;
Expand Down

0 comments on commit ba58c6f

Please sign in to comment.