Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. GitLabDriver.php

function GitLabDriver::setupGitDriver

1 call to GitLabDriver::setupGitDriver()
GitLabDriver::attemptCloneFallback in vendor/composer/composer/src/Composer/Repository/Vcs/GitLabDriver.php
@phpstan-impure

File

vendor/composer/composer/src/Composer/Repository/Vcs/GitLabDriver.php, line 443

Class

GitLabDriver
Driver for GitLab API, use the Git driver for local checkouts.

Namespace

Composer\Repository\Vcs

Code

protected function setupGitDriver(string $url) : void {
    $this->gitDriver = new GitDriver([
        'url' => $url,
    ], $this->io, $this->config, $this->httpDownloader, $this->process);
    $this->gitDriver
        ->initialize();
}
RSS feed
Powered by Drupal