php-parser/lib/PhpParser/Builder/Use_.php

59 lines
1.5 KiB
PHP
Raw Normal View History

2015-03-10 16:05:55 +01:00
<?php
namespace PhpParser\Builder;
use PhpParser\Builder;
use PhpParser\BuilderHelpers;
2015-03-10 16:05:55 +01:00
use PhpParser\Node;
use PhpParser\Node\Stmt;
/**
* @method $this as(string $alias) Sets alias for used name.
*/
class Use_ implements Builder {
2015-03-10 16:05:55 +01:00
protected $name;
protected $type;
protected $alias = null;
/**
* Creates a name use (alias) builder.
*
* @param Node\Name|string $name Name of the entity (namespace, class, function, constant) to alias
* @param int $type One of the Stmt\Use_::TYPE_* constants
*/
public function __construct($name, $type) {
$this->name = BuilderHelpers::normalizeName($name);
2015-03-10 16:05:55 +01:00
$this->type = $type;
}
/**
* Sets alias for used name.
*
* @param string $alias Alias to use (last component of full name by default)
*
* @return $this The builder instance (for fluid interface)
*/
protected function as_($alias) {
$this->alias = $alias;
return $this;
}
public function __call($name, $args) {
if (method_exists($this, $name . '_')) {
2017-01-19 20:55:08 +01:00
return $this->{$name . '_'}(...$args);
}
throw new \LogicException(sprintf('Method "%s" does not exist', $name));
2015-03-10 16:05:55 +01:00
}
/**
* Returns the built node.
*
* @return Node The built node
*/
public function getNode() {
return new Stmt\Use_(array(
new Stmt\UseUse($this->name, $this->alias)
2015-03-10 16:05:55 +01:00
), $this->type);
}
}