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

Breadcrumb

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

CurlDownloader::$multiErrors

@var array<int, string[]>

Type: multiErrors

File

vendor/composer/composer/src/Composer/Util/Http/CurlDownloader.php, line 56

Class

CurlDownloader
@internal @author Jordi Boggiano <j.boggiano@seld.be> @author Nicolas Grekas <p@tchwork.com> @phpstan-type Attributes array{retryAuthFailure: bool, redirects: int<0, max>, retries: int<0, max>, storeAuth:…

Namespace

Composer\Util\Http

Code

protected $multiErrors = [
    CURLM_BAD_HANDLE => [
        'CURLM_BAD_HANDLE',
        'The passed-in handle is not a valid CURLM handle.',
    ],
    CURLM_BAD_EASY_HANDLE => [
        'CURLM_BAD_EASY_HANDLE',
        "An easy handle was not good/valid. It could mean that it isn't an easy handle at all, or possibly that the handle already is in used by this or another multi handle.",
    ],
    CURLM_OUT_OF_MEMORY => [
        'CURLM_OUT_OF_MEMORY',
        'You are doomed.',
    ],
    CURLM_INTERNAL_ERROR => [
        'CURLM_INTERNAL_ERROR',
        'This can only be returned if libcurl bugs. Please report it to us!',
    ],
];

API Navigation

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