Controllers\xAPI\DocumentController::show PHP 메소드

show() 공개 메소드

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