This file is indexed.

/usr/share/php/GuzzleHttp/autoload.php is in php-guzzlehttp 6.1.1-1.

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
46
47
48
49
50
51
52
53
54
55
56
57
<?php

require_once 'GuzzleHttp/Psr7/autoload.php';
require_once 'GuzzleHttp/Promise/autoload.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\\client' => '/Client.php',
                'guzzlehttp\\clientinterface' => '/ClientInterface.php',
                'guzzlehttp\\cookie\\cookiejar' => '/Cookie/CookieJar.php',
                'guzzlehttp\\cookie\\cookiejarinterface' => '/Cookie/CookieJarInterface.php',
                'guzzlehttp\\cookie\\filecookiejar' => '/Cookie/FileCookieJar.php',
                'guzzlehttp\\cookie\\sessioncookiejar' => '/Cookie/SessionCookieJar.php',
                'guzzlehttp\\cookie\\setcookie' => '/Cookie/SetCookie.php',
                'guzzlehttp\\exception\\badresponseexception' => '/Exception/BadResponseException.php',
                'guzzlehttp\\exception\\clientexception' => '/Exception/ClientException.php',
                'guzzlehttp\\exception\\connectexception' => '/Exception/ConnectException.php',
                'guzzlehttp\\exception\\guzzleexception' => '/Exception/GuzzleException.php',
                'guzzlehttp\\exception\\requestexception' => '/Exception/RequestException.php',
                'guzzlehttp\\exception\\seekexception' => '/Exception/SeekException.php',
                'guzzlehttp\\exception\\serverexception' => '/Exception/ServerException.php',
                'guzzlehttp\\exception\\toomanyredirectsexception' => '/Exception/TooManyRedirectsException.php',
                'guzzlehttp\\exception\\transferexception' => '/Exception/TransferException.php',
                'guzzlehttp\\handler\\curlfactory' => '/Handler/CurlFactory.php',
                'guzzlehttp\\handler\\curlfactoryinterface' => '/Handler/CurlFactoryInterface.php',
                'guzzlehttp\\handler\\curlhandler' => '/Handler/CurlHandler.php',
                'guzzlehttp\\handler\\curlmultihandler' => '/Handler/CurlMultiHandler.php',
                'guzzlehttp\\handler\\easyhandle' => '/Handler/EasyHandle.php',
                'guzzlehttp\\handler\\mockhandler' => '/Handler/MockHandler.php',
                'guzzlehttp\\handler\\proxy' => '/Handler/Proxy.php',
                'guzzlehttp\\handler\\streamhandler' => '/Handler/StreamHandler.php',
                'guzzlehttp\\handlerstack' => '/HandlerStack.php',
                'guzzlehttp\\messageformatter' => '/MessageFormatter.php',
                'guzzlehttp\\middleware' => '/Middleware.php',
                'guzzlehttp\\pool' => '/Pool.php',
                'guzzlehttp\\preparebodymiddleware' => '/PrepareBodyMiddleware.php',
                'guzzlehttp\\redirectmiddleware' => '/RedirectMiddleware.php',
                'guzzlehttp\\requestoptions' => '/RequestOptions.php',
                'guzzlehttp\\retrymiddleware' => '/RetryMiddleware.php',
                'guzzlehttp\\transferstats' => '/TransferStats.php',
                'guzzlehttp\\uritemplate' => '/UriTemplate.php'
            );
        }
        $cn = strtolower($class);
        if (isset($classes[$cn])) {
            require __DIR__ . $classes[$cn];
        }
    }
);
// @codeCoverageIgnoreEnd