| Total Complexity | 2 |
| Total Lines | 26 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 7 | abstract class AbstractResponse extends \Omnipay\Common\Message\AbstractResponse |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * Helper method to get a specific response parameter if available. |
||
| 11 | * |
||
| 12 | * @param string $key The key to look up |
||
| 13 | * |
||
| 14 | * @return mixed|null |
||
| 15 | */ |
||
| 16 | abstract protected function getKey($key); |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @return string|null |
||
| 20 | */ |
||
| 21 | protected function getAuthorisationCode() |
||
| 35 |