This file is indexed.

/usr/share/php/Image/Text/Exception.php is in php-image-text 0.7.0-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
20
21
22
23
24
25
26
<?php
/**
 * Exception for Image_Text
 *
 * PHP version 5
 *
 * @category Image
 * @package  Image_Text
 * @author   Daniel O'Connor <daniel.oconnor@gmail.com>
 * @license  http://www.php.net/license/3_01.txt PHP License
 * @link     http://pear.php.net/package/Image_Text
 */
require_once 'PEAR/Exception.php';
/**
 * Exception for Image_Text
 *
 * @category Image
 * @package  Image_Text
 * @author   Daniel O'Connor <daniel.oconnor@gmail.com>
 * @author   Michael Cramer <michael@bigmichi1.de>
 * @license  http://www.php.net/license/3_01.txt PHP License
 * @link     http://pear.php.net/package/Image_Text
 */
class Image_Text_Exception extends PEAR_Exception
{
}