Skip to content

Commit 40c0c51

Browse files
VincentLangletgithub-actions[bot]
authored andcommitted
CS
1 parent 59c5dcc commit 40c0c51

9 files changed

Lines changed: 9 additions & 8 deletions

composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@
5252
"matthiasnoback/symfony-config-test": "^4.2 || ^5.1",
5353
"matthiasnoback/symfony-dependency-injection-test": "^4.0 || ^5.0",
5454
"phpstan/extension-installer": "^1.0",
55+
"phpstan/phpdoc-parser": "^1.0",
5556
"phpstan/phpstan": "^1.0",
5657
"phpstan/phpstan-phpunit": "^1.0",
5758
"phpstan/phpstan-strict-rules": "^1.0",

src/Admin/ContextAwareAdmin.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public function __construct(
3737
$contextManager,
3838
?string $deprecatedClass = null,
3939
?string $deprecatedBaseControllerName = null,
40-
?ContextManagerInterface $deprecatedContextManager = null
40+
?ContextManagerInterface $deprecatedContextManager = null,
4141
) {
4242
// NEXT_MAJOR: Keep the if part.
4343
if ($contextManager instanceof ContextManagerInterface) {

src/Block/Service/AbstractCategoriesBlockService.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public function __construct(
4545
Environment $twig,
4646
ContextManagerInterface $contextManager,
4747
private CategoryManagerInterface $categoryManager,
48-
private ?AdminInterface $categoryAdmin
48+
private ?AdminInterface $categoryAdmin,
4949
) {
5050
parent::__construct($twig, $contextManager);
5151
}

src/Block/Service/AbstractClassificationBlockService.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ abstract class AbstractClassificationBlockService extends AbstractBlockService
3636
{
3737
public function __construct(
3838
Environment $twig,
39-
protected ContextManagerInterface $contextManager
39+
protected ContextManagerInterface $contextManager,
4040
) {
4141
parent::__construct($twig);
4242
}

src/Block/Service/AbstractCollectionsBlockService.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public function __construct(
4545
Environment $twig,
4646
ContextManagerInterface $contextManager,
4747
private CollectionManagerInterface $collectionManager,
48-
private ?AdminInterface $collectionAdmin = null
48+
private ?AdminInterface $collectionAdmin = null,
4949
) {
5050
parent::__construct($twig, $contextManager);
5151
}

src/Block/Service/AbstractTagsBlockService.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public function __construct(
4545
Environment $twig,
4646
ContextManagerInterface $contextManager,
4747
private TagManagerInterface $tagManager,
48-
private ?AdminInterface $tagAdmin = null
48+
private ?AdminInterface $tagAdmin = null,
4949
) {
5050
parent::__construct($twig, $contextManager);
5151
}

src/Command/FixContextCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public function __construct(
3030
private ContextManagerInterface $contextManager,
3131
private TagManagerInterface $tagManager,
3232
private CollectionManagerInterface $collectionManager,
33-
private CategoryManagerInterface $categoryManager
33+
private CategoryManagerInterface $categoryManager,
3434
) {
3535
parent::__construct();
3636
}

src/Document/CategoryManager.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ final class CategoryManager extends BaseDocumentManager implements CategoryManag
3636
public function __construct(
3737
string $class,
3838
ManagerRegistry $registry,
39-
protected ContextManagerInterface $contextManager
39+
protected ContextManagerInterface $contextManager,
4040
) {
4141
parent::__construct($class, $registry);
4242
$this->categories = [];

src/Entity/CategoryManager.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ final class CategoryManager extends BaseEntityManager implements CategoryManager
3636
public function __construct(
3737
string $class,
3838
ManagerRegistry $registry,
39-
protected ContextManagerInterface $contextManager
39+
protected ContextManagerInterface $contextManager,
4040
) {
4141
parent::__construct($class, $registry);
4242
$this->categories = [];

0 commit comments

Comments
 (0)