This file is indexed.

/usr/share/php/Sabberworm/CSS/Value/CSSFunction.php is in php-horde-css-parser 1.0.4-5.

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
33
34
35
<?php

namespace Sabberworm\CSS\Value;

class CSSFunction extends ValueList {

    private $sName;

    public function __construct($sName, $aArguments, $sSeparator = ',') {
        if($aArguments instanceof RuleValueList) {
            $sSeparator = $aArguments->getListSeparator();
            $aArguments = $aArguments->getListComponents();
        }
        $this->sName = $sName;
        parent::__construct($aArguments, $sSeparator);
    }

    public function getName() {
        return $this->sName;
    }

    public function setName($sName) {
        $this->sName = $sName;
    }

    public function getArguments() {
        return $this->aComponents;
    }

    public function __toString() {
        $aArguments = parent::__toString();
        return "{$this->sName}({$aArguments})";
    }

}