Gitlab\Api\Repositories::blob PHP Method

blob() public method

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