Commit 68e67bfb authored by Jean-Philippe Metivier's avatar Jean-Philippe Metivier
Browse files

QOL: @see dans le fichier de config

parent 12c1c629
Loading
Loading
Loading
Loading
Loading
+5 −4
Original line number Diff line number Diff line
@@ -73,6 +73,7 @@ return array(
                'options' => [
                    'route' => '/mail',
                    'defaults' => [
                        /** @see MailController::indexAction() */
                        'controller' => MailController::class,
                        'action' => 'index',
                    ],
@@ -84,7 +85,7 @@ return array(
                        'options' => [
                            'route' => '/test',
                            'defaults' => [
                                'controller' => MailController::class,
                                /** @see MailController::testAction() */
                                'action' => 'test',
                            ],
                        ],
@@ -94,7 +95,7 @@ return array(
                        'options' => [
                            'route' => '/afficher/:mail',
                            'defaults' => [
                                'controller' => MailController::class,
                                /** @see MailController::afficherAction() */
                                'action' => 'afficher',
                            ],
                        ],
@@ -104,7 +105,7 @@ return array(
                        'options' => [
                            'route' => '/reenvoi/:mail',
                            'defaults' => [
                                'controller' => MailController::class,
                                /** @see MailController::reenvoiAction() */
                                'action' => 'reenvoi',
                            ],
                        ],
@@ -114,7 +115,7 @@ return array(
                        'options' => [
                            'route' => '/supprimer/:mail',
                            'defaults' => [
                                'controller' => MailController::class,
                                /** @see MailController::supprimerAction() */
                                'action' => 'supprimer',
                            ],
                        ],