| 1 | <?php |
||
| 15 | class SessionController extends AbstractController |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * @Route("/sandbox-credentials", name="sandbox-credentials-create", methods={"POST"}) |
||
| 19 | * |
||
| 20 | * @return RedirectResponse |
||
| 21 | */ |
||
| 22 | public function sandboxCredentialsCreate() |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @Route("/sandbox-credentials/delete", name="sandbox-credentials-delete", methods={"GET"}) |
||
| 35 | * |
||
| 36 | * @return RedirectResponse |
||
| 37 | */ |
||
| 38 | public function sandboxCredentialsDelete() |
||
| 44 | } |
||
| 45 |