This file is indexed.

/usr/share/php/TheSeer/Autoload/ParserInterface.php is in phpab 1.24.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
17
18
19
20
<?php
namespace TheSeer\Autoload;

/**
 * Namespace aware parser to find and extract defined classes within php source files
 *
 * @author     Arne Blankerts <arne@blankerts.de>
 * @copyright  Arne Blankerts <arne@blankerts.de>, All rights reserved.
 */
interface ParserInterface {

    /**
     * Parse a given file for defintions of classes, traits and interfaces
     *
     * @param SourceFile $source file to process
     *
     * @return ParseResult
     */
    public function parse(SourceFile $source);
}