This file is indexed.

/usr/share/php/Hamcrest/Internal/SelfDescribingValue.php is in php-hamcrest 2.0.0-0ubuntu1.

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
<?php
namespace Hamcrest\Internal;

/*
 Copyright (c) 2009 hamcrest.org
 */
use Hamcrest\Description;
use Hamcrest\SelfDescribing;

/**
 * A wrapper around any value so that it describes itself.
 */
class SelfDescribingValue implements SelfDescribing
{

    private $_value;

    public function __construct($value)
    {
        $this->_value = $value;
    }

    public function describeTo(Description $description)
    {
        $description->appendValue($this->_value);
    }
}