| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 31 | public function addRoutes(RouteCollection $routeCollection): RouteCollection |
||
| 32 | { |
||
| 33 | $route = $this->buildRoute('/easycredit/payment/success', 'Easycredit', 'Easycredit', 'successEasycreditResponse'); |
||
| 34 | $route = $route->setMethods([Request::METHOD_GET]); |
||
| 35 | $routeCollection->add(static::ROUTE_NAME_EASYCREDIT_SUCCESS_RESPONSE, $route); |
||
| 36 | |||
| 37 | return $routeCollection; |
||
| 38 | } |
||
| 40 |