| 1 | <?php |
||
| 9 | class RevokeTicketResponse extends AbstractScaleEngineResponse |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * Get the response from the command as a ScaleEngineTicket model. |
||
| 13 | * |
||
| 14 | * This takes the command given and ensures that it has a successful |
||
| 15 | * response. Because the revoke API call does not return any data, this |
||
| 16 | * call does not return an object. |
||
| 17 | * |
||
| 18 | * @param OperationCommand $command The RevokeTicket API call made. |
||
| 19 | * @return void |
||
| 20 | */ |
||
| 21 | public static function fromCommand(OperationCommand $command) |
||
| 25 | } |
||
| 26 |