This file is indexed.

/usr/share/php/Symfony/Component/Workflow/autoload.php is in php-symfony-workflow 3.4.6+dfsg-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
<?php
// require:
require_once 'Symfony/Component/PropertyAccess/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\\component\\workflow\\definition' => '/Definition.php',
                'symfony\\component\\workflow\\definitionbuilder' => '/DefinitionBuilder.php',
                'symfony\\component\\workflow\\dependencyinjection\\validateworkflowspass' => '/DependencyInjection/ValidateWorkflowsPass.php',
                'symfony\\component\\workflow\\dumper\\dumperinterface' => '/Dumper/DumperInterface.php',
                'symfony\\component\\workflow\\dumper\\graphvizdumper' => '/Dumper/GraphvizDumper.php',
                'symfony\\component\\workflow\\dumper\\statemachinegraphvizdumper' => '/Dumper/StateMachineGraphvizDumper.php',
                'symfony\\component\\workflow\\event\\event' => '/Event/Event.php',
                'symfony\\component\\workflow\\event\\guardevent' => '/Event/GuardEvent.php',
                'symfony\\component\\workflow\\eventlistener\\audittraillistener' => '/EventListener/AuditTrailListener.php',
                'symfony\\component\\workflow\\eventlistener\\expressionlanguage' => '/EventListener/ExpressionLanguage.php',
                'symfony\\component\\workflow\\eventlistener\\guardlistener' => '/EventListener/GuardListener.php',
                'symfony\\component\\workflow\\exception\\exceptioninterface' => '/Exception/ExceptionInterface.php',
                'symfony\\component\\workflow\\exception\\invalidargumentexception' => '/Exception/InvalidArgumentException.php',
                'symfony\\component\\workflow\\exception\\invaliddefinitionexception' => '/Exception/InvalidDefinitionException.php',
                'symfony\\component\\workflow\\exception\\invalidtokenconfigurationexception' => '/Exception/InvalidTokenConfigurationException.php',
                'symfony\\component\\workflow\\exception\\logicexception' => '/Exception/LogicException.php',
                'symfony\\component\\workflow\\exception\\runtimeexception' => '/Exception/RuntimeException.php',
                'symfony\\component\\workflow\\marking' => '/Marking.php',
                'symfony\\component\\workflow\\markingstore\\markingstoreinterface' => '/MarkingStore/MarkingStoreInterface.php',
                'symfony\\component\\workflow\\markingstore\\multiplestatemarkingstore' => '/MarkingStore/MultipleStateMarkingStore.php',
                'symfony\\component\\workflow\\markingstore\\singlestatemarkingstore' => '/MarkingStore/SingleStateMarkingStore.php',
                'symfony\\component\\workflow\\registry' => '/Registry.php',
                'symfony\\component\\workflow\\statemachine' => '/StateMachine.php',
                'symfony\\component\\workflow\\supportstrategy\\classinstancesupportstrategy' => '/SupportStrategy/ClassInstanceSupportStrategy.php',
                'symfony\\component\\workflow\\supportstrategy\\supportstrategyinterface' => '/SupportStrategy/SupportStrategyInterface.php',
                'symfony\\component\\workflow\\transition' => '/Transition.php',
                'symfony\\component\\workflow\\validator\\definitionvalidatorinterface' => '/Validator/DefinitionValidatorInterface.php',
                'symfony\\component\\workflow\\validator\\statemachinevalidator' => '/Validator/StateMachineValidator.php',
                'symfony\\component\\workflow\\validator\\workflowvalidator' => '/Validator/WorkflowValidator.php',
                'symfony\\component\\workflow\\workflow' => '/Workflow.php'
            );
        }
        $cn = strtolower($class);
        if (isset($classes[$cn]) and file_exists(__DIR__ . $classes[$cn])) {
            require __DIR__ . $classes[$cn];
        }
    }
);
// @codeCoverageIgnoreEnd