mirror of
https://github.com/crmeb/CRMEB.git
synced 2026-01-06 04:18:11 +00:00
13 lines
244 B
PHP
13 lines
244 B
PHP
<?php
|
|
|
|
namespace Symfony\Component\Translation\Tests\DependencyInjection\fixtures;
|
|
|
|
use Symfony\Contracts\Translation\TranslatorInterface;
|
|
|
|
class ServiceArguments
|
|
{
|
|
public function __construct(TranslatorInterface $translator)
|
|
{
|
|
}
|
|
}
|