This file is indexed.

/usr/share/php/Symfony/Bundle/FrameworkBundle/Resources/config/property_access.xml is in php-symfony-framework-bundle 2.8.7+dfsg-1.3+deb9u1.

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
<?xml version="1.0" ?>

<container xmlns="http://symfony.com/schema/dic/services"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://symfony.com/schema/dic/services http://symfony.com/schema/dic/services/services-1.0.xsd">

    <parameters>
        <parameter key="property_accessor.class">Symfony\Component\PropertyAccess\PropertyAccessor</parameter>
    </parameters>

    <services>
        <service id="property_accessor" class="%property_accessor.class%" >
            <argument /> <!-- magicCall, set by the extension -->
            <argument /> <!-- throwExceptionOnInvalidIndex, set by the extension -->
        </service>
    </services>
</container>