mirror of
https://github.com/danog/PHP-Parser.git
synced 2025-01-07 13:38:26 +01:00
13 lines
208 B
PHP
13 lines
208 B
PHP
<?php
|
|
|
|
class Node_Name extends NodeAbstract
|
|
{
|
|
const ABSOLUTE = 1;
|
|
const RELATIVE = 2;
|
|
|
|
protected $resolveType;
|
|
|
|
public function resolveType($type) {
|
|
$this->resolveType = $type;
|
|
}
|
|
} |