| Total Complexity | 2 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | class ImsLtiServiceDeleteResponse extends ImsLtiServiceResponse |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * ImsLtiServiceDeleteResponse constructor. |
||
| 11 | * |
||
| 12 | * @param ImsLtiServiceResponseStatus $statusInfo |
||
| 13 | * @param mixed|null $bodyParam |
||
| 14 | */ |
||
| 15 | public function __construct(ImsLtiServiceResponseStatus $statusInfo, $bodyParam = null) |
||
| 16 | { |
||
| 17 | $statusInfo->setOperationRefIdentifier('deleteResult'); |
||
| 18 | |||
| 19 | parent::__construct($statusInfo, $bodyParam); |
||
| 20 | } |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @param SimpleXMLElement $xmlBody |
||
| 24 | */ |
||
| 25 | protected function generateBody(SimpleXMLElement $xmlBody) |
||
| 28 | } |
||
| 29 | } |
||
| 30 |