| Total Complexity | 6 |
| Total Lines | 30 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 12 | class Gateway extends AbstractGateway |
||
| 13 | { |
||
| 14 | use GatewayTrait; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @inheritDoc |
||
| 18 | */ |
||
| 19 | public function setSandbox($value) |
||
| 22 | } |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @inheritDoc |
||
| 26 | */ |
||
| 27 | public function getSandbox() |
||
| 28 | { |
||
| 29 | return $this->getTestMode() === true ? 'yes' : 'no'; |
||
| 30 | } |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @return bool |
||
| 34 | */ |
||
| 35 | public function isActive() |
||
| 42 | } |
||
| 43 | } |
||
| 44 |