This file is indexed.

/usr/share/php/Symfony/Bundle/FrameworkBundle/Resources/views/FormTable/form_row.html.php is in php-symfony-framework-bundle 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
<tr>
    <td>
        <?php echo $view['form']->label($form); ?>
    </td>
    <td>
        <?php echo $view['form']->errors($form); ?>
        <?php echo $view['form']->widget($form); ?>
    </td>
</tr>