| 1 | <?php |
||
| 12 | class ThreemaGateway_Session extends XFCP_ThreemaGateway_Session |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * Exposes the protected method _setup publicly, so everyone can use it. |
||
| 16 | * |
||
| 17 | * To skip IP address validation now one just have to use $ipAddress = false. |
||
| 18 | * |
||
| 19 | * @param string $sessionId Session ID to look up, if one exists |
||
| 20 | * @param string|false $ipAddress IP address in binary format or false, for access limiting. |
||
| 21 | * @param array|null $defaultSession If no session can be found, uses this as the default session value |
||
| 22 | */ |
||
| 23 | public function threemagwSetupRaw($sessionId = '', $ipAddress = false, array $defaultSession = null) |
||
| 27 | } |
||
| 28 |