| 1 | <?php |
||
| 36 | abstract class Payone_SessionStatus_Response_Abstract |
||
|
|
|||
| 37 | implements Payone_SessionStatus_Response_Interface |
||
| 38 | { |
||
| 39 | /** |
||
| 40 | * @param $name |
||
| 41 | * @return null|mixed |
||
| 42 | */ |
||
| 43 | protected function get($name) |
||
| 51 | |||
| 52 | /** |
||
| 53 | * @param string $name |
||
| 54 | * @param mixed $value |
||
| 55 | * @return boolean|null |
||
| 56 | */ |
||
| 57 | protected function set($name, $value) |
||
| 66 | |||
| 67 | /** |
||
| 68 | * @return array |
||
| 69 | */ |
||
| 70 | public function toArray() |
||
| 87 | } |
||
| 88 |
You can fix this by adding a namespace to your class:
When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.