This file is indexed.

/usr/share/php/Mockery/autoload.php is in php-mockery 0.9.4-1build1.

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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<?php

require_once 'Hamcrest/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(
                'mockery' => '/../Mockery.php',
                'mockery\\adapter\\phpunit\\mockeryphpunitintegration' => '/Adapter/Phpunit/MockeryPHPUnitIntegration.php',
                'mockery\\adapter\\phpunit\\mockerytestcase' => '/Adapter/Phpunit/MockeryTestCase.php',
                'mockery\\adapter\\phpunit\\testlistener' => '/Adapter/Phpunit/TestListener.php',
                'mockery\\compositeexpectation' => '/CompositeExpectation.php',
                'mockery\\configuration' => '/Configuration.php',
                'mockery\\container' => '/Container.php',
                'mockery\\countvalidator\\atleast' => '/CountValidator/AtLeast.php',
                'mockery\\countvalidator\\atmost' => '/CountValidator/AtMost.php',
                'mockery\\countvalidator\\countvalidatorabstract' => '/CountValidator/CountValidatorAbstract.php',
                'mockery\\countvalidator\\exact' => '/CountValidator/Exact.php',
                'mockery\\countvalidator\\exception' => '/CountValidator/Exception.php',
                'mockery\\exception' => '/Exception.php',
                'mockery\\exception\\invalidcountexception' => '/Exception/InvalidCountException.php',
                'mockery\\exception\\invalidorderexception' => '/Exception/InvalidOrderException.php',
                'mockery\\exception\\nomatchingexpectationexception' => '/Exception/NoMatchingExpectationException.php',
                'mockery\\exception\\runtimeexception' => '/Exception/RuntimeException.php',
                'mockery\\expectation' => '/Expectation.php',
                'mockery\\expectationdirector' => '/ExpectationDirector.php',
                'mockery\\expectationinterface' => '/ExpectationInterface.php',
                'mockery\\generator\\cachinggenerator' => '/Generator/CachingGenerator.php',
                'mockery\\generator\\definedtargetclass' => '/Generator/DefinedTargetClass.php',
                'mockery\\generator\\generator' => '/Generator/Generator.php',
                'mockery\\generator\\method' => '/Generator/Method.php',
                'mockery\\generator\\mockconfiguration' => '/Generator/MockConfiguration.php',
                'mockery\\generator\\mockconfigurationbuilder' => '/Generator/MockConfigurationBuilder.php',
                'mockery\\generator\\mockdefinition' => '/Generator/MockDefinition.php',
                'mockery\\generator\\parameter' => '/Generator/Parameter.php',
                'mockery\\generator\\stringmanipulation\\pass\\calltypehintpass' => '/Generator/StringManipulation/Pass/CallTypeHintPass.php',
                'mockery\\generator\\stringmanipulation\\pass\\classnamepass' => '/Generator/StringManipulation/Pass/ClassNamePass.php',
                'mockery\\generator\\stringmanipulation\\pass\\classpass' => '/Generator/StringManipulation/Pass/ClassPass.php',
                'mockery\\generator\\stringmanipulation\\pass\\instancemockpass' => '/Generator/StringManipulation/Pass/InstanceMockPass.php',
                'mockery\\generator\\stringmanipulation\\pass\\interfacepass' => '/Generator/StringManipulation/Pass/InterfacePass.php',
                'mockery\\generator\\stringmanipulation\\pass\\methoddefinitionpass' => '/Generator/StringManipulation/Pass/MethodDefinitionPass.php',
                'mockery\\generator\\stringmanipulation\\pass\\pass' => '/Generator/StringManipulation/Pass/Pass.php',
                'mockery\\generator\\stringmanipulation\\pass\\removebuiltinmethodsthatarefinalpass' => '/Generator/StringManipulation/Pass/RemoveBuiltinMethodsThatAreFinalPass.php',
                'mockery\\generator\\stringmanipulation\\pass\\removeunserializeforinternalserializableclassespass' => '/Generator/StringManipulation/Pass/RemoveUnserializeForInternalSerializableClassesPass.php',
                'mockery\\generator\\stringmanipulationgenerator' => '/Generator/StringManipulationGenerator.php',
                'mockery\\generator\\targetclass' => '/Generator/TargetClass.php',
                'mockery\\generator\\undefinedtargetclass' => '/Generator/UndefinedTargetClass.php',
                'mockery\\instantiator' => '/Instantiator.php',
                'mockery\\loader' => '/Loader.php',
                'mockery\\loader\\evalloader' => '/Loader/EvalLoader.php',
                'mockery\\loader\\loader' => '/Loader/Loader.php',
                'mockery\\loader\\requireloader' => '/Loader/RequireLoader.php',
                'mockery\\matcher\\any' => '/Matcher/Any.php',
                'mockery\\matcher\\anyof' => '/Matcher/AnyOf.php',
                'mockery\\matcher\\closure' => '/Matcher/Closure.php',
                'mockery\\matcher\\contains' => '/Matcher/Contains.php',
                'mockery\\matcher\\ducktype' => '/Matcher/Ducktype.php',
                'mockery\\matcher\\haskey' => '/Matcher/HasKey.php',
                'mockery\\matcher\\hasvalue' => '/Matcher/HasValue.php',
                'mockery\\matcher\\matcherabstract' => '/Matcher/MatcherAbstract.php',
                'mockery\\matcher\\mustbe' => '/Matcher/MustBe.php',
                'mockery\\matcher\\not' => '/Matcher/Not.php',
                'mockery\\matcher\\notanyof' => '/Matcher/NotAnyOf.php',
                'mockery\\matcher\\subset' => '/Matcher/Subset.php',
                'mockery\\matcher\\type' => '/Matcher/Type.php',
                'mockery\\methodcall' => '/MethodCall.php',
                'mockery\\mock' => '/Mock.php',
                'mockery\\mockinterface' => '/MockInterface.php',
                'mockery\\receivedmethodcalls' => '/ReceivedMethodCalls.php',
                'mockery\\recorder' => '/Recorder.php',
                'mockery\\undefined' => '/Undefined.php',
                'mockery\\verificationdirector' => '/VerificationDirector.php',
                'mockery\\verificationexpectation' => '/VerificationExpectation.php'
            );
        }
        $cn = strtolower($class);
        if (isset($classes[$cn])) {
            require __DIR__ . $classes[$cn];
        }
    },
    true,
    false
);
// @codeCoverageIgnoreEnd