20 lines
502 B
PHP
Raw Normal View History

2025-03-12 10:47:34 +08:00
<?php
namespace Symfony\Component\Translation\Tests\DependencyInjection\fixtures;
use Psr\Container\ContainerInterface;
use Symfony\Contracts\Service\ServiceSubscriberInterface;
use Symfony\Contracts\Translation\TranslatorInterface;
class ServiceSubscriber implements ServiceSubscriberInterface
{
public function __construct(ContainerInterface $container)
{
}
public static function getSubscribedServices()
{
return ['translator' => TranslatorInterface::class];
}
}