Removed references to anything related with translations

This commit is contained in:
Alejandro Celaya
2019-09-12 08:09:17 +02:00
parent fdb98fa2a9
commit 7b0ccc9f69
17 changed files with 14 additions and 110 deletions

View File

@@ -12,8 +12,6 @@ use Symfony\Component\Console\Application;
use Symfony\Component\Console\Command\Command;
use Zend\ServiceManager\ServiceManager;
use function array_merge;
class ApplicationFactoryTest extends TestCase
{
/** @var ApplicationFactory */
@@ -49,7 +47,7 @@ class ApplicationFactoryTest extends TestCase
{
return new ServiceManager(['services' => [
'config' => [
'cli' => array_merge($config, ['locale' => 'en']),
'cli' => $config,
],
AppOptions::class => new AppOptions(),
]]);