| 1 | <?php |
||
| 20 | class ExceptionFactory |
||
| 21 | { |
||
| 22 | /** |
||
| 23 | * Factory concrete exception for response from APN service. |
||
| 24 | * |
||
| 25 | * @param int $statusCode |
||
| 26 | * @param string $responseContent |
||
| 27 | * @param \Exception|null $previous |
||
| 28 | * |
||
| 29 | * @return ApnsException |
||
| 30 | */ |
||
| 31 | public static function factoryException($statusCode, $responseContent, \Exception $previous = null) |
||
| 61 | } |
||
| 62 |