Gitlab\Api\Repositories::compare PHP Méthode

compare() public méthode

public compare ( integer $project_id, string $fromShaOrMaster, string $toShaOrMaster ) : mixed
$project_id integer
$fromShaOrMaster string
$toShaOrMaster string
Résultat mixed
    public function compare($project_id, $fromShaOrMaster, $toShaOrMaster)
    {
        return $this->get($this->getProjectPath($project_id, 'repository/compare?from=' . $this->encodeBranch($fromShaOrMaster) . '&to=' . $this->encodeBranch($toShaOrMaster)));
    }