File: //usr/share/php/GuzzleHttp/Promise/autoload.php
<?php
require_once __DIR__ . '/functions_include.php';
// @codingStandardsIgnoreFile
// @codeCoverageIgnoreStart
// this is an autogenerated file - do not edit
spl_autoload_register(
function($class) {
static $classes = null;
if ($classes === null) {
$classes = array(
'guzzlehttp\\promise\\aggregateexception' => '/AggregateException.php',
'guzzlehttp\\promise\\cancellationexception' => '/CancellationException.php',
'guzzlehttp\\promise\\coroutine' => '/Coroutine.php',
'guzzlehttp\\promise\\eachpromise' => '/EachPromise.php',
'guzzlehttp\\promise\\fulfilledpromise' => '/FulfilledPromise.php',
'guzzlehttp\\promise\\promise' => '/Promise.php',
'guzzlehttp\\promise\\promiseinterface' => '/PromiseInterface.php',
'guzzlehttp\\promise\\promisorinterface' => '/PromisorInterface.php',
'guzzlehttp\\promise\\rejectedpromise' => '/RejectedPromise.php',
'guzzlehttp\\promise\\rejectionexception' => '/RejectionException.php',
'guzzlehttp\\promise\\taskqueue' => '/TaskQueue.php',
'guzzlehttp\\promise\\taskqueueinterface' => '/TaskQueueInterface.php'
);
}
$cn = strtolower($class);
if (isset($classes[$cn])) {
require __DIR__ . $classes[$cn];
}
}
);
// @codeCoverageIgnoreEnd