Gitlab\Api\Repositories::blob PHP 메소드

blob() 공개 메소드

public blob ( integer $project_id, string $sha, string $filepath ) : mixed
$project_id integer
$sha string
$filepath string
리턴 mixed
    public function blob($project_id, $sha, $filepath)
    {
        return $this->get($this->getProjectPath($project_id, 'repository/commits/' . $this->encodePath($sha) . '/blob'), array('filepath' => $filepath));
    }