17 lines
412 B
PHP
17 lines
412 B
PHP
|
<?php
|
||
|
|
||
|
namespace Symfony\Component\DependencyInjection\Tests\Fixtures;
|
||
|
|
||
|
use Symfony\Contracts\Service\ServiceSubscriberInterface;
|
||
|
use Symfony\Contracts\Service\ServiceSubscriberTrait;
|
||
|
|
||
|
class TestServiceSubscriberParent implements ServiceSubscriberInterface
|
||
|
{
|
||
|
use ServiceSubscriberTrait;
|
||
|
|
||
|
private function testDefinition1(): TestDefinition1
|
||
|
{
|
||
|
return $this->container->get(__METHOD__);
|
||
|
}
|
||
|
}
|