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

Breadcrumb

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

function Svn::createAuthFromUrl

Create the auth params from the url

1 call to Svn::createAuthFromUrl()
Svn::hasAuth in vendor/composer/composer/src/Composer/Util/Svn.php
Detect Svn Auth.

File

vendor/composer/composer/src/Composer/Util/Svn.php, line 337

Class

Svn
@author Till Klampaeckel <till@php.net> @author Jordi Boggiano <j.boggiano@seld.be>

Namespace

Composer\Util

Code

private function createAuthFromUrl() : bool {
    $uri = parse_url($this->url);
    if (empty($uri['user'])) {
        return $this->hasAuth = false;
    }
    $this->credentials = [
        'username' => $uri['user'],
        'password' => !empty($uri['pass']) ? $uri['pass'] : '',
    ];
    return $this->hasAuth = true;
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal