mirror of
https://github.com/crmeb/CRMEB.git
synced 2025-12-27 14:10:35 +00:00
13 lines
248 B
PHP
13 lines
248 B
PHP
<?php
|
|
|
|
namespace Symfony\Component\Translation\Tests\DependencyInjection\fixtures;
|
|
|
|
use Symfony\Contracts\Translation\TranslatorInterface;
|
|
|
|
class ServiceMethodCalls
|
|
{
|
|
public function setTranslator(TranslatorInterface $translator)
|
|
{
|
|
}
|
|
}
|