This file is indexed.

/usr/share/php/Symfony/Bundle/FrameworkBundle/Resources/views/FormTable/form_widget_compound.html.php 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
<table <?php echo $view['form']->block($form, 'widget_container_attributes') ?>>
    <?php if (!$form->parent && $errors): ?>
    <tr>
        <td colspan="2">
            <?php echo $view['form']->errors($form) ?>
        </td>
    </tr>
    <?php endif ?>
    <?php echo $view['form']->block($form, 'form_rows') ?>
    <?php echo $view['form']->rest($form) ?>
</table>