2017-08-18 22:57:27 +02:00
|
|
|
<?php declare(strict_types=1);
|
2015-03-10 16:05:55 +01:00
|
|
|
|
|
|
|
namespace PhpParser\Builder;
|
|
|
|
|
2017-04-24 21:15:11 +02:00
|
|
|
use PhpParser\Builder;
|
|
|
|
use PhpParser\BuilderHelpers;
|
2015-03-10 16:05:55 +01:00
|
|
|
use PhpParser\Node;
|
|
|
|
use PhpParser\Node\Stmt;
|
|
|
|
|
2017-04-24 21:15:11 +02:00
|
|
|
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
|
|
|
|
*/
|
2017-04-28 21:40:59 +02:00
|
|
|
public function __construct($name, int $type) {
|
2017-04-24 21:15:11 +02:00
|
|
|
$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)
|
|
|
|
*/
|
2017-09-02 20:06:50 +02:00
|
|
|
public function as(string $alias) {
|
2015-03-10 16:05:55 +01:00
|
|
|
$this->alias = $alias;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the built node.
|
|
|
|
*
|
|
|
|
* @return Node The built node
|
|
|
|
*/
|
2017-04-28 21:40:59 +02:00
|
|
|
public function getNode() : Node {
|
2017-08-13 14:06:08 +02:00
|
|
|
return new Stmt\Use_([
|
2017-04-28 21:05:01 +02:00
|
|
|
new Stmt\UseUse($this->name, $this->alias)
|
2017-08-13 14:06:08 +02:00
|
|
|
], $this->type);
|
2015-03-10 16:05:55 +01:00
|
|
|
}
|
|
|
|
}
|