Total Complexity | 5 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | class PurchaseResponse extends AbstractResponse implements RedirectResponseInterface |
||
12 | 2 | { |
|
13 | public function isSuccessful() |
||
14 | 2 | { |
|
15 | return false; |
||
16 | } |
||
17 | 2 | ||
18 | public function isRedirect() |
||
21 | } |
||
22 | 2 | ||
23 | public function getRedirectUrl() |
||
24 | 2 | { |
|
25 | return $this->getRequest()->getEndpoint(); |
||
|
|||
26 | } |
||
27 | 1 | ||
28 | public function getRedirectMethod() |
||
31 | } |
||
32 | 1 | ||
33 | public function getRedirectData() |
||
38 |