This file is indexed.

/usr/share/doc/php-analog/examples/psr-0.php is in php-analog 1.0.7-1build1.

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
<?php

require 'SplClassLoader.php';

$loader = new SplClassLoader ('Analog', '/usr/shar/php');
$loader->register ();

use \Analog\Analog;

$log = '';

Analog::handler (\Analog\Handler\Variable::init ($log));

Analog::log ('Test one');
Analog::log ('Test two');

echo $log;

?>