Skip to content

Commit abfa6c9

Browse files
committed
[Translator] Fix CS on TranslatorCompilerPass
1 parent 391e250 commit abfa6c9

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

src/Translator/src/DependencyInjection/TranslatorCompilerPass.php

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
<?php
22

3+
/*
4+
* This file is part of the Symfony package.
5+
*
6+
* (c) Fabien Potencier <fabien@symfony.com>
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*/
11+
312
namespace Symfony\UX\Translator\DependencyInjection;
413

514
use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface;
@@ -25,6 +34,7 @@ private function hasValidTranslator(ContainerBuilder $containerBuilder): bool
2534
if (!is_subclass_of($translator->getClass(), TranslatorBagInterface::class)) {
2635
return false;
2736
}
37+
2838
return true;
2939
}
30-
}
40+
}

0 commit comments

Comments
 (0)