| Total Complexity | 5 |
| Total Lines | 27 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 19 | class PurchaseResponse extends AbstractResponse implements RedirectResponseInterface |
||
| 20 | { |
||
| 21 | protected $_redirect = 'https://auth.robokassa.ru/Merchant/Index.aspx'; |
||
| 22 | |||
| 23 | public function isSuccessful() |
||
| 24 | { |
||
| 25 | return false; |
||
| 26 | } |
||
| 27 | |||
| 28 | public function isRedirect() |
||
| 29 | { |
||
| 30 | return true; |
||
| 31 | } |
||
| 32 | |||
| 33 | public function getRedirectUrl() |
||
| 34 | { |
||
| 35 | return $this->_redirect; |
||
| 36 | } |
||
| 37 | |||
| 38 | public function getRedirectMethod() |
||
| 41 | } |
||
| 42 | |||
| 43 | public function getRedirectData() |
||
| 46 | } |
||
| 47 | } |
||
| 48 |