chamilo/chamilo-lms

View on GitHub
public/plugin/ims_lti/src/ImsLtiServiceUnsupportedResponse.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
/* For licensing terms, see /license.txt */

/**
 * Class ImsLtiServiceUnsupportedResponse.
 */
class ImsLtiServiceUnsupportedResponse extends ImsLtiServiceResponse
{
    /**
     * ImsLtiServiceUnsupportedResponse constructor.
     *
     * @param string $type
     */
    public function __construct(ImsLtiServiceResponseStatus $statusInfo, $type)
    {
        $statusInfo->setOperationRefIdentifier($type);

        parent::__construct($statusInfo);
    }

    protected function generateBody(SimpleXMLElement $xmlBody)
    {
    }
}