2017-08-18 22:57:27 +02:00
|
|
|
<?php declare(strict_types=1);
|
2014-12-19 17:58:47 +01:00
|
|
|
|
|
|
|
namespace PhpParser\Builder;
|
|
|
|
|
|
|
|
use PhpParser;
|
2017-04-24 21:15:11 +02:00
|
|
|
use PhpParser\BuilderHelpers;
|
2014-12-19 17:58:47 +01:00
|
|
|
use PhpParser\Node\Stmt;
|
|
|
|
|
|
|
|
class Trait_ extends Declaration
|
|
|
|
{
|
|
|
|
protected $name;
|
2017-08-13 14:06:08 +02:00
|
|
|
protected $properties = [];
|
|
|
|
protected $methods = [];
|
2014-12-19 17:58:47 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates an interface builder.
|
|
|
|
*
|
|
|
|
* @param string $name Name of the interface
|
|
|
|
*/
|
2017-04-28 21:40:59 +02:00
|
|
|
public function __construct(string $name) {
|
2014-12-19 17:58:47 +01:00
|
|
|
$this->name = $name;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Adds a statement.
|
|
|
|
*
|
|
|
|
* @param Stmt|PhpParser\Builder $stmt The statement to add
|
|
|
|
*
|
|
|
|
* @return $this The builder instance (for fluid interface)
|
|
|
|
*/
|
|
|
|
public function addStmt($stmt) {
|
2017-04-24 21:15:11 +02:00
|
|
|
$stmt = BuilderHelpers::normalizeNode($stmt);
|
2015-07-11 22:31:45 +02:00
|
|
|
|
|
|
|
if ($stmt instanceof Stmt\Property) {
|
|
|
|
$this->properties[] = $stmt;
|
|
|
|
} else if ($stmt instanceof Stmt\ClassMethod) {
|
|
|
|
$this->methods[] = $stmt;
|
|
|
|
} else {
|
2014-12-19 17:58:47 +01:00
|
|
|
throw new \LogicException(sprintf('Unexpected node of type "%s"', $stmt->getType()));
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the built trait node.
|
|
|
|
*
|
|
|
|
* @return Stmt\Trait_ The built interface node
|
|
|
|
*/
|
2017-04-28 21:40:59 +02:00
|
|
|
public function getNode() : PhpParser\Node {
|
2015-07-11 22:31:45 +02:00
|
|
|
return new Stmt\Trait_(
|
2017-08-13 14:06:08 +02:00
|
|
|
$this->name, [
|
2016-07-22 17:01:51 +02:00
|
|
|
'stmts' => array_merge($this->properties, $this->methods)
|
2017-08-13 14:06:08 +02:00
|
|
|
], $this->attributes
|
2015-07-11 22:31:45 +02:00
|
|
|
);
|
2014-12-19 17:58:47 +01:00
|
|
|
}
|
|
|
|
}
|