Skip to content

Commit 5b2ddbb

Browse files
Fix multiple CS errors
1 parent 0c8ac7d commit 5b2ddbb

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

Command/SecretsDecryptToLocalCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int
9595
$io->note($this->localVault->getLastMessage());
9696
}
9797

98-
if ($hadErrors) {
98+
if ($hadErrors) {
9999
return 1;
100100
}
101101

DependencyInjection/FrameworkExtension.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
use Composer\InstalledVersions;
1515
use Http\Client\HttpAsyncClient;
1616
use Http\Client\HttpClient;
17-
use Symfony\Component\TypeInfo\TypeResolver\PhpDocAwareReflectionTypeResolver;
1817
use phpDocumentor\Reflection\DocBlockFactoryInterface;
1918
use phpDocumentor\Reflection\Types\ContextFactory;
2019
use PhpParser\Parser;
@@ -173,6 +172,7 @@
173172
use Symfony\Component\Translation\PseudoLocalizationTranslator;
174173
use Symfony\Component\Translation\Translator;
175174
use Symfony\Component\TypeInfo\Type;
175+
use Symfony\Component\TypeInfo\TypeResolver\PhpDocAwareReflectionTypeResolver;
176176
use Symfony\Component\TypeInfo\TypeResolver\StringTypeResolver;
177177
use Symfony\Component\Uid\Factory\UuidFactory;
178178
use Symfony\Component\Uid\UuidV4;

Resources/config/services.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ class_exists(WorkflowEvents::class) ? WorkflowEvents::ALIASES : []
155155

156156
->set('uri_signer', UriSigner::class)
157157
->args([
158-
new Parameter('kernel.secret')
158+
new Parameter('kernel.secret'),
159159
])
160160
->alias(UriSigner::class, 'uri_signer')
161161

Tests/DependencyInjection/ConfigurationTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313

1414
use Doctrine\DBAL\Connection;
1515
use PHPUnit\Framework\TestCase;
16-
use Seld\JsonLint\JsonParser;
1716
use Symfony\Bundle\FrameworkBundle\DependencyInjection\Configuration;
1817
use Symfony\Bundle\FullStack;
1918
use Symfony\Component\Cache\Adapter\DoctrineAdapter;

0 commit comments

Comments
 (0)