Run symfonysetlist up to symfony_70

This commit is contained in:
2025-05-28 15:46:25 +02:00
parent abb786495a
commit 13a9e14450
128 changed files with 515 additions and 518 deletions

View File

@@ -19,7 +19,7 @@ class AdminController extends AbstractController
/**
* ThirdParty admin.
*/
#[Route(path: '/{_locale}/admin/thirdparty', name: 'chill_thirdparty_admin_index')]
#[\Symfony\Component\Routing\Attribute\Route(path: '/{_locale}/admin/thirdparty', name: 'chill_thirdparty_admin_index')]
public function indexAdminAction(): \Symfony\Component\HttpFoundation\Response
{
return $this->render('@ChillThirdParty/Admin/index.html.twig');

View File

@@ -38,7 +38,7 @@ class ThirdpartyCSVExportController extends AbstractController
* @throws CannotInsertRecord
* @throws Exception
*/
#[Route(path: '/{_locale}/admin/thirdparty/export/list.{_format}', name: 'chill_thirdparty_admin_export_list', requirements: ['_format' => 'csv'])]
#[\Symfony\Component\Routing\Attribute\Route(path: '/{_locale}/admin/thirdparty/export/list.{_format}', name: 'chill_thirdparty_admin_export_list', requirements: ['_format' => 'csv'])]
public function socialIssueList(Request $request, string $_format = 'csv'): StreamedResponse
{
if (!$this->security->isGranted('ROLE_ADMIN')) {