This file is indexed.

/usr/share/php/kohana3.1/modules/codebench/config/codebench.php is in libkohana3.1-mod-codebench-php 3.1.5-1.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
<?php defined('SYSPATH') OR die('No direct access allowed.');

return array(

	/**
	 * The maximum execution time, in seconds. If set to zero, no time limit is imposed.
	 * Note: http://php.net/manual/en/function.set-time-limit.php#84563
	 */
	'max_execution_time' => 0,

	/**
	 * Expand all benchmark details by default.
	 */
	'expand_all' => FALSE,

);