This file is indexed.

/usr/share/php/Horde/Constraint/AlwaysFalse.php is in php-horde-constraint 2.0.1-7.

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
<?php
/**
 * Always returns false
 *
 * @author James Pepin <james@jamespepin.com>
 */
class Horde_Constraint_AlwaysFalse implements Horde_Constraint
{
    public function evaluate($value)
    {
        return false;
    }
}