This file is indexed.

/usr/share/php/Symfony/Bundle/FrameworkBundle/Resources/config/annotations.xml is in php-symfony-framework-bundle 2.7.10-0ubuntu2.

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
<?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.file_cache_reader" class="%annotations.file_cache_reader.class%" public="false">
            <argument type="service" id="annotations.reader" />
            <argument /><!-- Cache-Directory -->
            <argument /><!-- Debug Flag -->
        </service>

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