This file is indexed.

/usr/share/php/Horde/Xml/Wbxml/HashTable.php is in php-horde-xml-wbxml 2.0.3-3ubuntu1.

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
19
20
21
22
23
24
<?php
/**
 * Copyright 2003-2016 Horde LLC (http://www.horde.org/)
 *
 * See the enclosed file COPYING for license information (LGPL). If you
 * did not receive this file, see http://www.horde.org/licenses/lgpl21.
 *
 * @author  Anthony Mills <amills@pyramid6.com>
 * @package Xml_Wbxml
 */
class Horde_Xml_Wbxml_HashTable
{
    protected $_h;

    public function set($k, $v)
    {
        $this->_h[$k] = $v;
    }

    public function get($k)
    {
        return isset($this->_h[$k]) ? $this->_h[$k] : null;
    }
}