This file is indexed.

/usr/share/php/Symfony/Bundle/FrameworkBundle/Resources/config/annotations.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
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?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="annotations.reader.class">Doctrine\Common\Annotations\AnnotationReader</parameter>
        <parameter key="annotations.cached_reader.class">Doctrine\Common\Annotations\CachedReader</parameter>
        <parameter key="annotations.file_cache_reader.class">Doctrine\Common\Annotations\FileCacheReader</parameter>
    </parameters>

    <services>
        <service id="annotations.reader" class="%annotations.reader.class%" public="false" />

        <service id="annotations.cached_reader" class="%annotations.cached_reader.class%" public="false">
            <argument type="service" id="annotations.reader" />
            <argument /><!-- Cache Implementation -->
            <argument /><!-- Debug-Flag -->
        </service>

        <service id="annotations.filesystem_cache" class="Doctrine\Common\Cache\FilesystemCache" public="false">
            <argument /><!-- Cache-Directory -->
        </service>

        <service id="annotations.file_cache_reader" class="%annotations.file_cache_reader.class%" public="false">
            <deprecated>The "%service_id%" service is deprecated since 2.8 and will be removed in 3.0.</deprecated>
            <argument type="service" id="annotations.reader" />
            <argument /><!-- Cache-Directory -->
            <argument /><!-- Debug Flag -->
        </service>

        <service id="annotation_reader" alias="annotations.reader" />
    </services>
</container>