This file is indexed.

/usr/share/doc/libphp-phpmailer/test/bootstrap.php is in libphp-phpmailer 5.2.9+dfsg-2+deb8u3.

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
<?php
require_once 'vendor/autoload.php';
spl_autoload_register(function ($class) {
    require_once strtr($class, '\\_', '//').'.php';
});