This file is indexed.

/usr/share/php/Sabberworm/CSS/CSSList/MediaQuery.php is in php-horde-css-parser 1.0.3-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

namespace Sabberworm\CSS\CSSList;

/**
 * A CSSList consisting of the CSSList and CSSList objects found in a @media query.
 */
class MediaQuery extends CSSBlockList {

    private $sQuery;

    public function __construct() {
        parent::__construct();
        $this->sQuery = null;
    }

    public function setQuery($sQuery) {
        $this->sQuery = $sQuery;
    }

    public function getQuery() {
        return $this->sQuery;
    }

    public function __toString() {
        $sResult = "@media {$this->sQuery} {";
        $sResult .= parent::__toString();
        $sResult .= '}';
        return $sResult;
    }

}