php-parser/lib/PHPParser/Node/Name.php

16 lines
280 B
PHP
Raw Normal View History

2011-04-18 19:02:30 +02:00
<?php
/**
* @property array $parts Parts of the name
*/
2011-06-05 18:40:04 +02:00
class PHPParser_Node_Name extends PHPParser_NodeAbstract
2011-04-18 19:02:30 +02:00
{
const ABSOLUTE = 1;
const RELATIVE = 2;
protected $resolveType;
public function resolveType($type) {
$this->resolveType = $type;
}
}