mirror of
https://github.com/phabelio/PHP-Parser.git
synced 2024-12-03 18:07:58 +01:00
b84553e011
The unserializiation implementation currently is very hacky => needs some refactoring.
39 lines
734 B
PHP
39 lines
734 B
PHP
<?php
|
|
|
|
interface PHPParser_Node
|
|
{
|
|
/**
|
|
* Gets the type of the node.
|
|
*
|
|
* @return string Type of the node
|
|
*/
|
|
public function getType();
|
|
|
|
/**
|
|
* Gets line the node started in.
|
|
*
|
|
* @return int Line
|
|
*/
|
|
public function getLine();
|
|
|
|
/**
|
|
* Sets line the node started in.
|
|
*
|
|
* @param int $line Line
|
|
*/
|
|
public function setLine($line);
|
|
|
|
/**
|
|
* Gets the nearest doc comment.
|
|
*
|
|
* @return null|string Nearest doc comment or null
|
|
*/
|
|
public function getDocComment();
|
|
|
|
/**
|
|
* Sets the nearest doc comment.
|
|
*
|
|
* @param null|string $docComment Nearest doc comment or null
|
|
*/
|
|
public function setDocComment($docComment);
|
|
} |