Skip to content

Commit 4e4b46c

Browse files
committed
fix: cs & phpstan
1 parent 9a9e3e1 commit 4e4b46c

13 files changed

+13
-13
lines changed

Repository/ConfigRepository.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
class ConfigRepository extends AbstractRepository
1313
{
1414
/**
15-
* @return array<string, string>
15+
* @return list<array<string, mixed>>
1616
*/
1717
public function fetch($offset = 0, $limit = 250)
1818
{

Service/CategoryService.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class CategoryService extends AbstractApiService
3333
public function __construct(
3434
ApiRepositoryInterface $categoryRepository,
3535
ModelManager $modelManager,
36-
MediaServiceInterface $mediaService
36+
MediaServiceInterface $mediaService,
3737
) {
3838
$this->categoryRepository = $categoryRepository;
3939
$this->modelManager = $modelManager;

Service/ConfiguratorOptionService.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class ConfiguratorOptionService extends AbstractApiService
3333
public function __construct(
3434
ApiRepositoryInterface $customerGroupRepository,
3535
ModelManager $modelManager,
36-
MediaServiceInterface $mediaService
36+
MediaServiceInterface $mediaService,
3737
) {
3838
$this->configuratorOptionRepository = $customerGroupRepository;
3939
$this->modelManager = $modelManager;

Service/CrossSellingService.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class CrossSellingService extends AbstractApiService
1818
private $crossSellingRepository;
1919

2020
public function __construct(
21-
ApiRepositoryInterface $crossSellingRepository
21+
ApiRepositoryInterface $crossSellingRepository,
2222
) {
2323
$this->crossSellingRepository = $crossSellingRepository;
2424
}

Service/CustomerGroupService.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class CustomerGroupService extends AbstractApiService
3333
public function __construct(
3434
ApiRepositoryInterface $customerGroupRepository,
3535
ApiRepositoryInterface $customerRepository,
36-
ModelManager $modelManager
36+
ModelManager $modelManager,
3737
) {
3838
$this->customerGroupRepository = $customerGroupRepository;
3939
$this->customerRepository = $customerRepository;

Service/DocumentService.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ class DocumentService extends AbstractApiService
3838
public function __construct(
3939
ApiRepositoryInterface $documentRepository,
4040
$fileSystem,
41-
ModelManager $modelManager
41+
ModelManager $modelManager,
4242
) {
4343
$this->documentRepository = $documentRepository;
4444
$this->modelManager = $modelManager;

Service/EnvironmentService.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public function __construct(
6262
PluginInformationService $pluginInformationService,
6363
$version,
6464
$versionText,
65-
$revision
65+
$revision,
6666
) {
6767
$this->modelManager = $modelManager;
6868
$this->environmentRepository = $environmentRepository;

Service/EsdService.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class EsdService extends AbstractApiService
2222
private $fileSystem;
2323

2424
public function __construct(
25-
$fileSystem
25+
$fileSystem,
2626
) {
2727
$this->isFileSystemExisting = \is_subclass_of($fileSystem, 'League\Flysystem\FilesystemInterface');
2828
$this->fileSystem = $fileSystem;

Service/OrderNoteService.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class OrderNoteService extends AbstractApiService
1818
private $orderNoteRepository;
1919

2020
public function __construct(
21-
ApiRepositoryInterface $orderNoteRepository
21+
ApiRepositoryInterface $orderNoteRepository,
2222
) {
2323
$this->orderNoteRepository = $orderNoteRepository;
2424
}

Service/PluginInformationService.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ class PluginInformationService
3535
public function __construct(
3636
PluginStoreService $pluginStoreService,
3737
Connection $connection,
38-
$version
38+
$version,
3939
) {
4040
$this->pluginStoreService = $pluginStoreService;
4141
$this->connection = $connection;

0 commit comments

Comments
 (0)