| Total Complexity | 2 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 14 | class DefaultController extends AbstractController |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * @Route("/", name="index", methods={"GET"}) |
||
| 18 | * |
||
| 19 | * @return Response |
||
| 20 | */ |
||
| 21 | public function index() |
||
| 22 | { |
||
| 23 | return $this->render('braintree/index.html.twig'); |
||
| 24 | } |
||
| 25 | |||
| 26 | |||
| 27 | /** |
||
| 28 | * @Route("/close", name="close", methods={"GET"}) |
||
| 29 | * |
||
| 30 | * @return Response |
||
| 31 | */ |
||
| 32 | public function close(): Response |
||
| 35 | } |
||
| 36 | } |
||
| 37 |