50 lines
1.2 KiB
PHP
Raw Normal View History

2017-08-18 22:57:27 +02:00
<?php declare(strict_types=1);
2015-03-10 16:05:55 +01:00
namespace PhpParser\Builder;
use PhpParser\Builder;
use PhpParser\BuilderHelpers;
2015-03-10 16:05:55 +01:00
use PhpParser\Node;
use PhpParser\Node\Stmt;
class Use_ implements Builder {
protected Node\Name $name;
/** @var Stmt\Use_::TYPE_* */
protected int $type;
protected ?string $alias = null;
2015-03-10 16:05:55 +01:00
/**
* Creates a name use (alias) builder.
*
* @param Node\Name|string $name Name of the entity (namespace, class, function, constant) to alias
* @param Stmt\Use_::TYPE_* $type One of the Stmt\Use_::TYPE_* constants
2015-03-10 16:05:55 +01:00
*/
2017-04-28 21:40:59 +02:00
public function __construct($name, int $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)
*/
public function as(string $alias) {
2015-03-10 16:05:55 +01:00
$this->alias = $alias;
return $this;
}
/**
* Returns the built node.
*
* @return Stmt\Use_ The built node
2015-03-10 16:05:55 +01:00
*/
public function getNode(): Node {
return new Stmt\Use_([
2022-09-03 18:59:48 +02:00
new Node\UseItem($this->name, $this->alias)
], $this->type);
2015-03-10 16:05:55 +01:00
}
}