Gitlab\Api\Repositories::unprotectBranch PHP Метод

unprotectBranch() публичный Метод

public unprotectBranch ( integer $project_id, string $branch_name ) : mixed
$project_id integer
$branch_name string
Результат mixed
    public function unprotectBranch($project_id, $branch_name)
    {
        return $this->put($this->getProjectPath($project_id, 'repository/branches/' . $this->encodeBranch($branch_name) . '/unprotect'));
    }