Skip to content

Commit c5ab0bc

Browse files
authored
refac: fix cs (#512)
1 parent 0b3eaaa commit c5ab0bc

9 files changed

+10
-10
lines changed

Diff for: Command/CheckMissingCommand.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public function __construct(
4747
ConfigurationManager $configurationManager,
4848
CatalogueFetcher $catalogueFetcher,
4949
Importer $importer,
50-
CatalogueCounter $catalogueCounter
50+
CatalogueCounter $catalogueCounter,
5151
) {
5252
parent::__construct();
5353

Diff for: Command/DeleteEmptyCommand.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public function __construct(
5555
StorageManager $storageManager,
5656
ConfigurationManager $configurationManager,
5757
CatalogueManager $catalogueManager,
58-
CatalogueFetcher $catalogueFetcher
58+
CatalogueFetcher $catalogueFetcher,
5959
) {
6060
$this->storageManager = $storageManager;
6161
$this->configurationManager = $configurationManager;

Diff for: Command/DeleteObsoleteCommand.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public function __construct(
5555
StorageManager $storageManager,
5656
ConfigurationManager $configurationManager,
5757
CatalogueManager $catalogueManager,
58-
CatalogueFetcher $catalogueFetcher
58+
CatalogueFetcher $catalogueFetcher,
5959
) {
6060
$this->storageManager = $storageManager;
6161
$this->configurationManager = $configurationManager;

Diff for: Command/DownloadCommand.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public function __construct(
4343
StorageManager $storageManager,
4444
ConfigurationManager $configurationManager,
4545
CacheClearer $cacheCleaner,
46-
CatalogueWriter $catalogueWriter
46+
CatalogueWriter $catalogueWriter,
4747
) {
4848
$this->storageManager = $storageManager;
4949
$this->configurationManager = $configurationManager;

Diff for: Command/ExtractCommand.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ public function __construct(
6767
CatalogueWriter $catalogueWriter,
6868
CatalogueCounter $catalogueCounter,
6969
Importer $importer,
70-
ConfigurationManager $configurationManager
70+
ConfigurationManager $configurationManager,
7171
) {
7272
$this->catalogueFetcher = $catalogueFetcher;
7373
$this->catalogueWriter = $catalogueWriter;

Diff for: Command/StatusCommand.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ class StatusCommand extends Command
5050
public function __construct(
5151
CatalogueCounter $catalogueCounter,
5252
ConfigurationManager $configurationManager,
53-
CatalogueFetcher $catalogueFetcher
53+
CatalogueFetcher $catalogueFetcher,
5454
) {
5555
$this->catalogueCounter = $catalogueCounter;
5656
$this->configurationManager = $configurationManager;

Diff for: Controller/WebUIController.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public function __construct(
5858
bool $isWebUIEnabled,
5959
bool $isWebUIAllowCreate,
6060
bool $isWebUIAllowDelete,
61-
string $fileBasePath
61+
string $fileBasePath,
6262
) {
6363
$this->configurationManager = $configurationManager;
6464
$this->catalogueFetcher = $catalogueFetcher;

Diff for: Service/Importer.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ public function extractToCatalogues(Finder $finder, array $catalogues, array $co
131131
private function convertSourceLocationsToMessages(
132132
MessageCatalogue $catalogue,
133133
SourceCollection $collection,
134-
MessageCatalogue $currentCatalogue
134+
MessageCatalogue $currentCatalogue,
135135
): void {
136136
$currentMessages = NSA::getProperty($currentCatalogue, 'messages');
137137

Diff for: Tests/Functional/app/Service/DummyMessageFactory.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public function createRequest(
2222
$uri,
2323
array $headers = [],
2424
$body = null,
25-
$protocolVersion = '1.1'
25+
$protocolVersion = '1.1',
2626
) {
2727
return new Request($method, $uri);
2828
}
@@ -32,7 +32,7 @@ public function createResponse(
3232
$reasonPhrase = null,
3333
array $headers = [],
3434
$body = null,
35-
$protocolVersion = '1.1'
35+
$protocolVersion = '1.1',
3636
) {
3737
return new Response(200);
3838
}

0 commit comments

Comments
 (0)