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

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

public deleteFile ( integer $project_id, string $file_path, string $branch_name, string $commit_message ) : mixed
$project_id integer
$file_path string
$branch_name string
$commit_message string
Результат mixed
    public function deleteFile($project_id, $file_path, $branch_name, $commit_message)
    {
        return $this->delete($this->getProjectPath($project_id, 'repository/files'), array('file_path' => $file_path, 'branch_name' => $branch_name, 'commit_message' => $commit_message));
    }