/usr/share/php/Sabre/HTTP/autoload.php is in php-sabre-http 4.2.1-3ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 | <?php
require_once 'Sabre/Event/autoload.php';
require_once 'Sabre/Uri/autoload.php';
require_once __DIR__ . '/functions.php';
// @codingStandardsIgnoreFile
// @codeCoverageIgnoreStart
// this is an autogenerated file - do not edit
spl_autoload_register(
function($class) {
static $classes = null;
if ($classes === null) {
$classes = array(
'sabre\\http\\auth\\abstractauth' => '/Auth/AbstractAuth.php',
'sabre\\http\\auth\\aws' => '/Auth/AWS.php',
'sabre\\http\\auth\\basic' => '/Auth/Basic.php',
'sabre\\http\\auth\\bearer' => '/Auth/Bearer.php',
'sabre\\http\\auth\\digest' => '/Auth/Digest.php',
'sabre\\http\\client' => '/Client.php',
'sabre\\http\\clientexception' => '/ClientException.php',
'sabre\\http\\clienthttpexception' => '/ClientHttpException.php',
'sabre\\http\\httpexception' => '/HttpException.php',
'sabre\\http\\message' => '/Message.php',
'sabre\\http\\messagedecoratortrait' => '/MessageDecoratorTrait.php',
'sabre\\http\\messageinterface' => '/MessageInterface.php',
'sabre\\http\\request' => '/Request.php',
'sabre\\http\\requestdecorator' => '/RequestDecorator.php',
'sabre\\http\\requestinterface' => '/RequestInterface.php',
'sabre\\http\\response' => '/Response.php',
'sabre\\http\\responsedecorator' => '/ResponseDecorator.php',
'sabre\\http\\responseinterface' => '/ResponseInterface.php',
'sabre\\http\\sapi' => '/Sapi.php',
'sabre\\http\\urlutil' => '/URLUtil.php',
'sabre\\http\\util' => '/Util.php',
'sabre\\http\\version' => '/Version.php'
);
}
$cn = strtolower($class);
if (isset($classes[$cn])) {
require __DIR__ . $classes[$cn];
}
}
);
// @codeCoverageIgnoreEnd
|