mirror of
https://github.com/phabelio/PHP-Parser.git
synced 2024-12-12 09:09:41 +01:00
16 lines
280 B
PHP
16 lines
280 B
PHP
<?php
|
|
|
|
/**
|
|
* @property array $parts Parts of the name
|
|
*/
|
|
class PHPParser_Node_Name extends PHPParser_NodeAbstract
|
|
{
|
|
const ABSOLUTE = 1;
|
|
const RELATIVE = 2;
|
|
|
|
protected $resolveType;
|
|
|
|
public function resolveType($type) {
|
|
$this->resolveType = $type;
|
|
}
|
|
} |