This file is indexed.

/usr/share/php/tests/Horde_Kolab_Storage/Horde/Kolab/Storage/Stub/DataQuery.php is in php-horde-kolab-storage 2.0.5-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
10
11
12
13
14
15
16
17
18
<?php
class Horde_Kolab_Storage_Stub_DataQuery
implements Horde_Kolab_Storage_Data_Query
{
    public $synchronized = false;

    /**
     * Synchronize the query data with the information from the backend.
     *
     * @param array $params Additional parameters.
     *
     * @return NULL
     */
    public function synchronize($params = array())
    {
        $this->synchronized = true;
    }
}