1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2024-12-04 18:28:25 +01:00
PHP-Parser/lib/Node/Name.php

16 lines
260 B
PHP
Raw Normal View History

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