13 lines
248 B
PHP
Raw Normal View History

2025-03-12 10:47:34 +08:00
<?php
namespace Symfony\Component\Translation\Tests\DependencyInjection\fixtures;
use Symfony\Contracts\Translation\TranslatorInterface;
class ServiceMethodCalls
{
public function setTranslator(TranslatorInterface $translator)
{
}
}