17 lines
412 B
PHP
Executable File
17 lines
412 B
PHP
Executable File
<?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__);
|
|
}
|
|
}
|