This file is indexed.

/usr/share/horde/ansel/lib/Config.php is in php-horde-ansel 3.0.5+debian0-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
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?php
/**
 * Utility class for specifying scope-specific ansel configuration.
 *
 */
class Ansel_Config
{
    protected $_config = array();

    /**
     * Const'r - set the default scope to ansel.
     * 
     */
    public function __construct()
    {
        $this->_config['scope'] = 'ansel';
    }

    public function set($config, $value)
    {
        $this->_config[$config] = $value;
    }

    public function get($config)
    {
        if (!isset($this->_config[$config])) {
            throw InvalidArgumentException($config . ' not found');
        }
        return $this->_config[$config];
    }

}