2017-08-18 22:57:27 +02:00
|
|
|
<?php declare(strict_types=1);
|
2012-03-11 08:42:13 +01:00
|
|
|
|
2014-02-06 14:44:16 +01:00
|
|
|
namespace PhpParser\Builder;
|
|
|
|
|
|
|
|
use PhpParser;
|
2017-04-24 21:15:11 +02:00
|
|
|
use PhpParser\BuilderHelpers;
|
2014-02-06 14:44:16 +01:00
|
|
|
use PhpParser\Node\Stmt;
|
|
|
|
|
2017-04-24 21:15:11 +02:00
|
|
|
class Property implements PhpParser\Builder
|
2012-03-11 08:42:13 +01:00
|
|
|
{
|
|
|
|
protected $name;
|
|
|
|
|
2016-07-25 13:33:19 +02:00
|
|
|
protected $flags = 0;
|
2014-12-19 17:21:46 +01:00
|
|
|
protected $default = null;
|
2017-08-13 14:06:08 +02:00
|
|
|
protected $attributes = [];
|
2012-03-11 08:42:13 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates a property builder.
|
|
|
|
*
|
|
|
|
* @param string $name Name of the property
|
|
|
|
*/
|
2017-04-28 21:40:59 +02:00
|
|
|
public function __construct(string $name) {
|
2012-03-11 08:42:13 +01:00
|
|
|
$this->name = $name;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Makes the property public.
|
|
|
|
*
|
2014-12-19 17:21:46 +01:00
|
|
|
* @return $this The builder instance (for fluid interface)
|
2012-03-11 08:42:13 +01:00
|
|
|
*/
|
|
|
|
public function makePublic() {
|
2017-04-24 21:15:11 +02:00
|
|
|
$this->flags = BuilderHelpers::addModifier($this->flags, Stmt\Class_::MODIFIER_PUBLIC);
|
2012-03-11 08:42:13 +01:00
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Makes the property protected.
|
|
|
|
*
|
2014-12-19 17:21:46 +01:00
|
|
|
* @return $this The builder instance (for fluid interface)
|
2012-03-11 08:42:13 +01:00
|
|
|
*/
|
|
|
|
public function makeProtected() {
|
2017-04-24 21:15:11 +02:00
|
|
|
$this->flags = BuilderHelpers::addModifier($this->flags, Stmt\Class_::MODIFIER_PROTECTED);
|
2012-03-11 08:42:13 +01:00
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Makes the property private.
|
|
|
|
*
|
2014-12-19 17:21:46 +01:00
|
|
|
* @return $this The builder instance (for fluid interface)
|
2012-03-11 08:42:13 +01:00
|
|
|
*/
|
|
|
|
public function makePrivate() {
|
2017-04-24 21:15:11 +02:00
|
|
|
$this->flags = BuilderHelpers::addModifier($this->flags, Stmt\Class_::MODIFIER_PRIVATE);
|
2012-03-11 08:42:13 +01:00
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Makes the property static.
|
|
|
|
*
|
2014-12-19 17:21:46 +01:00
|
|
|
* @return $this The builder instance (for fluid interface)
|
2012-03-11 08:42:13 +01:00
|
|
|
*/
|
|
|
|
public function makeStatic() {
|
2017-04-24 21:15:11 +02:00
|
|
|
$this->flags = BuilderHelpers::addModifier($this->flags, Stmt\Class_::MODIFIER_STATIC);
|
2012-03-11 08:42:13 +01:00
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets default value for the property.
|
|
|
|
*
|
|
|
|
* @param mixed $value Default value to use
|
|
|
|
*
|
2014-12-19 17:21:46 +01:00
|
|
|
* @return $this The builder instance (for fluid interface)
|
2012-03-11 08:42:13 +01:00
|
|
|
*/
|
|
|
|
public function setDefault($value) {
|
2017-04-24 21:15:11 +02:00
|
|
|
$this->default = BuilderHelpers::normalizeValue($value);
|
2012-03-11 08:42:13 +01:00
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2014-12-13 13:44:40 +01:00
|
|
|
/**
|
|
|
|
* Sets doc comment for the property.
|
|
|
|
*
|
|
|
|
* @param PhpParser\Comment\Doc|string $docComment Doc comment to set
|
|
|
|
*
|
2014-12-19 17:21:46 +01:00
|
|
|
* @return $this The builder instance (for fluid interface)
|
2014-12-13 13:44:40 +01:00
|
|
|
*/
|
|
|
|
public function setDocComment($docComment) {
|
2017-08-13 14:06:08 +02:00
|
|
|
$this->attributes = [
|
|
|
|
'comments' => [BuilderHelpers::normalizeDocComment($docComment)]
|
|
|
|
];
|
2014-12-13 13:44:40 +01:00
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2012-03-11 08:42:13 +01:00
|
|
|
/**
|
|
|
|
* Returns the built class node.
|
|
|
|
*
|
2014-02-06 14:44:16 +01:00
|
|
|
* @return Stmt\Property The built property node
|
2012-03-11 08:42:13 +01:00
|
|
|
*/
|
2017-04-28 21:40:59 +02:00
|
|
|
public function getNode() : PhpParser\Node {
|
2014-02-06 14:44:16 +01:00
|
|
|
return new Stmt\Property(
|
2016-07-25 13:33:19 +02:00
|
|
|
$this->flags !== 0 ? $this->flags : Stmt\Class_::MODIFIER_PUBLIC,
|
2017-08-13 14:06:08 +02:00
|
|
|
[
|
2014-02-06 14:44:16 +01:00
|
|
|
new Stmt\PropertyProperty($this->name, $this->default)
|
2017-08-13 14:06:08 +02:00
|
|
|
],
|
2014-12-13 13:44:40 +01:00
|
|
|
$this->attributes
|
2012-03-11 08:42:13 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|