Skip to content

Commit

Permalink
[AllBundles] Fix php codestyle issues
Browse files Browse the repository at this point in the history
  • Loading branch information
acrobat committed Sep 14, 2024
1 parent 7e05f51 commit 30e1afc
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Kunstmaan/CookieBundle/Controller/LegalController.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public function __construct(LegalCookieHelper $cookieHelper, EntityManagerInterf
#[Route(path: '/modal/{internal_name}', name: 'kunstmaancookiebundle_legal_modal')]
public function switchTabAction(
Request $request,
#[MapEntity(expr: 'repository.getNodeByInternalName(internal_name)')] Node $node
#[MapEntity(expr: 'repository.getNodeByInternalName(internal_name)')] Node $node,
): Response {
$page = $node->getNodeTranslation($request->getLocale())->getRef($this->em);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class SubFolderFilterType extends AbstractORMFilterType
{
public function __construct(
private Folder $folder,
string $columnName
string $columnName,
) {
parent::__construct($columnName);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@
use Symfony\Component\HttpFoundation\JsonResponse;
use Symfony\Component\HttpFoundation\RedirectResponse;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\RequestStack;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
use Symfony\Component\Security\Core\Authorization\AuthorizationCheckerInterface;
Expand Down

0 comments on commit 30e1afc

Please sign in to comment.