Skip to content

Commit

Permalink
[DI] add missing property declarations in InlineServiceConfigurator
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolas-grekas committed Apr 9, 2020
1 parent 0506f8c commit a6a4442
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 a6a4442

Please sign in to comment.