mirror of
https://github.com/phabelio/PHP-Parser.git
synced 2024-12-11 08:39:44 +01:00
60 lines
1.3 KiB
PHP
60 lines
1.3 KiB
PHP
|
<?php declare(strict_types=1);
|
||
|
|
||
|
namespace PhpParser\Builder;
|
||
|
|
||
|
use PhpParser\Builder;
|
||
|
use PhpParser\BuilderHelpers;
|
||
|
use PhpParser\Node;
|
||
|
use PhpParser\Node\Stmt;
|
||
|
use PhpParser\Node\Stmt\TraitUseAdaptation;
|
||
|
|
||
|
class TraitUse implements Builder
|
||
|
{
|
||
|
protected $traits = [];
|
||
|
protected $adaptations = [];
|
||
|
|
||
|
/**
|
||
|
* Creates a trait use builder.
|
||
|
*
|
||
|
* @param Node\Name|string ...$traits Names of used traits
|
||
|
*/
|
||
|
public function __construct(...$traits) {
|
||
|
foreach ($traits as $trait) {
|
||
|
$this->and($trait);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Adds used trait.
|
||
|
*
|
||
|
* @param Node\Name|string $trait Trait name
|
||
|
*
|
||
|
* @return $this The builder instance (for fluid interface)
|
||
|
*/
|
||
|
public function and($trait) {
|
||
|
$this->traits[] = BuilderHelpers::normalizeName($trait);
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Adds trait adaptation.
|
||
|
*
|
||
|
* @param TraitUseAdaptation $adaptation Trait adaptation
|
||
|
*
|
||
|
* @return $this The builder instance (for fluid interface)
|
||
|
*/
|
||
|
public function with(TraitUseAdaptation $adaptation) {
|
||
|
$this->adaptations[] = $adaptation;
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Returns the built node.
|
||
|
*
|
||
|
* @return Node The built node
|
||
|
*/
|
||
|
public function getNode() : Node {
|
||
|
return new Stmt\TraitUse($this->traits, $this->adaptations);
|
||
|
}
|
||
|
}
|