File: //usr/share/php/Symfony/Contracts/HttpClient/autoload.php
<?php
if (stream_resolve_include_path('Symfony/Component/HttpClient/autoload.php')){
include_once 'Symfony/Component/HttpClient/autoload.php';
}
// @codingStandardsIgnoreFile
// @codeCoverageIgnoreStart
// this is an autogenerated file - do not edit
spl_autoload_register(
function($class) {
static $classes = null;
if ($classes === null) {
$classes = array(
'symfony\\contracts\\httpclient\\chunkinterface' => '/ChunkInterface.php',
'symfony\\contracts\\httpclient\\exception\\clientexceptioninterface' => '/Exception/ClientExceptionInterface.php',
'symfony\\contracts\\httpclient\\exception\\decodingexceptioninterface' => '/Exception/DecodingExceptionInterface.php',
'symfony\\contracts\\httpclient\\exception\\exceptioninterface' => '/Exception/ExceptionInterface.php',
'symfony\\contracts\\httpclient\\exception\\httpexceptioninterface' => '/Exception/HttpExceptionInterface.php',
'symfony\\contracts\\httpclient\\exception\\redirectionexceptioninterface' => '/Exception/RedirectionExceptionInterface.php',
'symfony\\contracts\\httpclient\\exception\\serverexceptioninterface' => '/Exception/ServerExceptionInterface.php',
'symfony\\contracts\\httpclient\\exception\\transportexceptioninterface' => '/Exception/TransportExceptionInterface.php',
'symfony\\contracts\\httpclient\\httpclientinterface' => '/HttpClientInterface.php',
'symfony\\contracts\\httpclient\\responseinterface' => '/ResponseInterface.php',
'symfony\\contracts\\httpclient\\responsestreaminterface' => '/ResponseStreamInterface.php',
'symfony\\contracts\\httpclient\\test\\httpclienttestcase' => '/Test/HttpClientTestCase.php',
'symfony\\contracts\\httpclient\\test\\testhttpserver' => '/Test/TestHttpServer.php'
);
}
$cn = strtolower($class);
if (isset($classes[$cn]) and file_exists(__DIR__ . $classes[$cn])) {
require __DIR__ . $classes[$cn];
}
},
true,
false
);
// @codeCoverageIgnoreEnd