Controllers\xAPI\DocumentController::show PHP Method

show() public method

Returns (GETs) a single document.
public show ( ) : DocumentResponse
return DocumentResponse
    public function show()
    {
        // Runs filters.
        if ($result = $this->checkVersion()) {
            return $result;
        }
        return $this->documentResponse($this->getShowData());
    }