diff --git a/src/Bundle/ChillCustomFieldsBundle/Templating/Twig/CustomFieldRenderingTwig.php b/src/Bundle/ChillCustomFieldsBundle/Templating/Twig/CustomFieldRenderingTwig.php index cd1ba9f71..639a452e3 100644 --- a/src/Bundle/ChillCustomFieldsBundle/Templating/Twig/CustomFieldRenderingTwig.php +++ b/src/Bundle/ChillCustomFieldsBundle/Templating/Twig/CustomFieldRenderingTwig.php @@ -27,7 +27,6 @@ use Twig\TwigFunction; */ class CustomFieldRenderingTwig extends AbstractExtension { - /** * @var array The default parameters */ diff --git a/src/Bundle/ChillEventBundle/Controller/ParticipationController.php b/src/Bundle/ChillEventBundle/Controller/ParticipationController.php index 1d6366d88..c5423cc18 100644 --- a/src/Bundle/ChillEventBundle/Controller/ParticipationController.php +++ b/src/Bundle/ChillEventBundle/Controller/ParticipationController.php @@ -468,6 +468,7 @@ class ParticipationController extends AbstractController /** * @\Symfony\Component\Routing\Annotation\Route(path="/{_locale}/event/participation/{event_id}/update_multiple", name="chill_event_participation_update_multiple", methods={"POST"}) + * @param mixed $event_id */ public function updateMultipleAction($event_id, Request $request) { diff --git a/src/Bundle/ChillMainBundle/Controller/ExportController.php b/src/Bundle/ChillMainBundle/Controller/ExportController.php index 4f22e9d1e..fec68f208 100644 --- a/src/Bundle/ChillMainBundle/Controller/ExportController.php +++ b/src/Bundle/ChillMainBundle/Controller/ExportController.php @@ -68,6 +68,7 @@ class ExportController extends AbstractController /** * @\Symfony\Component\Routing\Annotation\Route(path="/{_locale}/exports/download/{alias}", name="chill_main_export_download", methods={"GET"}) + * @param mixed $alias */ public function downloadResultAction(Request $request, $alias) { diff --git a/src/Bundle/ChillMainBundle/Controller/SearchController.php b/src/Bundle/ChillMainBundle/Controller/SearchController.php index c352057f2..126626372 100644 --- a/src/Bundle/ChillMainBundle/Controller/SearchController.php +++ b/src/Bundle/ChillMainBundle/Controller/SearchController.php @@ -42,6 +42,7 @@ class SearchController extends AbstractController /** * @\Symfony\Component\Routing\Annotation\Route(path="/{_locale}/search/advanced/{name}", name="chill_main_advanced_search") + * @param mixed $name */ public function advancedSearchAction($name, Request $request) { @@ -109,6 +110,7 @@ class SearchController extends AbstractController /** * @\Symfony\Component\Routing\Annotation\Route(path="/{_locale}/search.{_format}", name="chill_main_search", requirements={"_format"="html|json"}, defaults={"_format"="html"}) + * @param mixed $_format */ public function searchAction(Request $request, $_format) { @@ -201,6 +203,7 @@ class SearchController extends AbstractController /** * @\Symfony\Component\Routing\Annotation\Route(path="/api/1.0/search.{_format}", name="chill_main_search_global", requirements={"_format"="json"}, defaults={"_format"="json"}) + * @param mixed $_format */ public function searchApi(Request $request, $_format): JsonResponse { diff --git a/src/Bundle/ChillPersonBundle/Controller/PersonAddressController.php b/src/Bundle/ChillPersonBundle/Controller/PersonAddressController.php index 048f79228..6413d72b3 100644 --- a/src/Bundle/ChillPersonBundle/Controller/PersonAddressController.php +++ b/src/Bundle/ChillPersonBundle/Controller/PersonAddressController.php @@ -42,6 +42,7 @@ class PersonAddressController extends AbstractController /** * @\Symfony\Component\Routing\Annotation\Route(path="/{_locale}/person/{person_id}/address/create", name="chill_person_address_create", methods={"POST"}) + * @param mixed $person_id */ public function createAction($person_id, Request $request) { @@ -100,6 +101,8 @@ class PersonAddressController extends AbstractController /** * @\Symfony\Component\Routing\Annotation\Route(path="/{_locale}/person/{person_id}/address/{address_id}/edit", name="chill_person_address_edit") + * @param mixed $person_id + * @param mixed $address_id */ public function editAction($person_id, $address_id) { @@ -131,6 +134,7 @@ class PersonAddressController extends AbstractController /** * @\Symfony\Component\Routing\Annotation\Route(path="/{_locale}/person/{person_id}/address/list", name="chill_person_address_list") + * @param mixed $person_id */ public function listAction($person_id) { @@ -156,6 +160,7 @@ class PersonAddressController extends AbstractController /** * @\Symfony\Component\Routing\Annotation\Route(path="/{_locale}/person/{person_id}/address/new", name="chill_person_address_new") + * @param mixed $person_id */ public function newAction($person_id) { @@ -186,6 +191,8 @@ class PersonAddressController extends AbstractController /** * @\Symfony\Component\Routing\Annotation\Route(path="/{_locale}/person/{person_id}/address/{address_id}/update", name="chill_person_address_update") + * @param mixed $person_id + * @param mixed $address_id */ public function updateAction($person_id, $address_id, Request $request) { diff --git a/src/Bundle/ChillPersonBundle/Controller/PersonDuplicateController.php b/src/Bundle/ChillPersonBundle/Controller/PersonDuplicateController.php index 5b50e9c81..315adfd71 100644 --- a/src/Bundle/ChillPersonBundle/Controller/PersonDuplicateController.php +++ b/src/Bundle/ChillPersonBundle/Controller/PersonDuplicateController.php @@ -40,6 +40,8 @@ class PersonDuplicateController extends \Symfony\Bundle\FrameworkBundle\Controll /** * @\Symfony\Component\Routing\Annotation\Route(path="/{_locale}/person/{person1_id}/duplicate/{person2_id}/confirm", name="chill_person_duplicate_confirm") + * @param mixed $person1_id + * @param mixed $person2_id */ public function confirmAction($person1_id, $person2_id, Request $request) { @@ -104,6 +106,7 @@ class PersonDuplicateController extends \Symfony\Bundle\FrameworkBundle\Controll /** * @\Symfony\Component\Routing\Annotation\Route(path="/{_locale}/person/{person_id}/find-manually", name="chill_person_find_manually_duplicate") + * @param mixed $person_id */ public function findManuallyDuplicateAction($person_id, Request $request) { @@ -157,6 +160,8 @@ class PersonDuplicateController extends \Symfony\Bundle\FrameworkBundle\Controll /** * @\Symfony\Component\Routing\Annotation\Route(path="/{_locale}/person/{person1_id}/duplicate/{person2_id}/not-duplicate", name="chill_person_duplicate_not_duplicate") + * @param mixed $person1_id + * @param mixed $person2_id */ public function notDuplicateAction($person1_id, $person2_id) { @@ -186,6 +191,8 @@ class PersonDuplicateController extends \Symfony\Bundle\FrameworkBundle\Controll /** * @\Symfony\Component\Routing\Annotation\Route(path="/{_locale}/person/{person1_id}/duplicate/{person2_id}/remove-not-duplicate", name="chill_person_remove_duplicate_not_duplicate") + * @param mixed $person1_id + * @param mixed $person2_id */ public function removeNotDuplicateAction($person1_id, $person2_id) { @@ -210,6 +217,7 @@ class PersonDuplicateController extends \Symfony\Bundle\FrameworkBundle\Controll /** * @\Symfony\Component\Routing\Annotation\Route(path="/{_locale}/person/{person_id}/duplicate/view", name="chill_person_duplicate_view") + * @param mixed $person_id */ public function viewAction($person_id, PersonNotDuplicateRepository $personNotDuplicateRepository) { diff --git a/src/Bundle/ChillPersonBundle/Controller/PersonResourceController.php b/src/Bundle/ChillPersonBundle/Controller/PersonResourceController.php index 3206813c0..81d8f253b 100644 --- a/src/Bundle/ChillPersonBundle/Controller/PersonResourceController.php +++ b/src/Bundle/ChillPersonBundle/Controller/PersonResourceController.php @@ -31,6 +31,8 @@ final class PersonResourceController extends AbstractController /** * @\Symfony\Component\Routing\Annotation\Route(path="/{_locale}/person/{person_id}/resources/{resource_id}/delete", name="chill_person_resource_delete") + * @param mixed $person_id + * @param mixed $resource_id */ public function deleteAction(Request $request, $person_id, $resource_id): Response { @@ -80,6 +82,8 @@ final class PersonResourceController extends AbstractController /** * @\Symfony\Component\Routing\Annotation\Route(path="/{_locale}/person/{person_id}/resources/{resource_id}/edit", name="chill_person_resource_edit") + * @param mixed $resource_id + * @param mixed $person_id */ public function editAction(Request $request, $resource_id, $person_id): Response { @@ -117,6 +121,7 @@ final class PersonResourceController extends AbstractController /** * @\Symfony\Component\Routing\Annotation\Route(path="/{_locale}/person/{person_id}/resources/list", name="chill_person_resource_list") + * @param mixed $person_id */ public function listAction(Request $request, $person_id) { @@ -137,6 +142,7 @@ final class PersonResourceController extends AbstractController /** * @\Symfony\Component\Routing\Annotation\Route(path="/{_locale}/person/{person_id}/resources/new", name="chill_person_resource_new") + * @param mixed $person_id */ public function newAction(Request $request, $person_id) { diff --git a/src/Bundle/ChillPersonBundle/Controller/TimelinePersonController.php b/src/Bundle/ChillPersonBundle/Controller/TimelinePersonController.php index 9083f7f5b..176fcba4f 100644 --- a/src/Bundle/ChillPersonBundle/Controller/TimelinePersonController.php +++ b/src/Bundle/ChillPersonBundle/Controller/TimelinePersonController.php @@ -28,6 +28,7 @@ class TimelinePersonController extends AbstractController /** * @\Symfony\Component\Routing\Annotation\Route(path="/{_locale}/person/{person_id}/timeline", name="chill_person_timeline") + * @param mixed $person_id */ public function personAction(Request $request, $person_id) {