1 | <?php |
||
7 | abstract class Declaration extends PersistentListItem { |
||
8 | public $path; |
||
9 | public $line; |
||
10 | |||
11 | function __construct( $path, $line ) { |
||
15 | |||
16 | function match( $other ) { |
||
20 | |||
21 | function partial_match( $other ) { |
||
25 | |||
26 | // a simple name, like 'method' |
||
27 | abstract function type(); |
||
28 | |||
29 | // e.g. Jetpack::get_file_url_for_environment() |
||
30 | abstract function display_name(); |
||
31 | } |