2017-08-18 22:57:27 +02:00
|
|
|
<?php declare(strict_types=1);
|
2012-03-11 00:06:02 +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;
|
|
|
|
|
2017-04-24 21:15:11 +02:00
|
|
|
class Param implements PhpParser\Builder
|
2012-03-11 00:06:02 +01:00
|
|
|
{
|
|
|
|
protected $name;
|
|
|
|
|
2014-12-19 17:21:46 +01:00
|
|
|
protected $default = null;
|
2016-12-05 13:30:29 +01:00
|
|
|
|
|
|
|
/** @var string|Node\Name|Node\NullableType|null */
|
2014-12-19 17:21:46 +01:00
|
|
|
protected $type = null;
|
2016-12-05 13:30:29 +01:00
|
|
|
|
2014-12-19 17:21:46 +01:00
|
|
|
protected $byRef = false;
|
2012-03-11 00:06:02 +01:00
|
|
|
|
2017-04-16 12:45:18 +02:00
|
|
|
protected $variadic = false;
|
|
|
|
|
2012-03-11 00:06:02 +01:00
|
|
|
/**
|
|
|
|
* Creates a parameter builder.
|
|
|
|
*
|
|
|
|
* @param string $name Name of the parameter
|
|
|
|
*/
|
2017-04-28 21:40:59 +02:00
|
|
|
public function __construct(string $name) {
|
2012-03-11 00:06:02 +01:00
|
|
|
$this->name = $name;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets default value for the parameter.
|
|
|
|
*
|
|
|
|
* @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 00:06:02 +01:00
|
|
|
*/
|
|
|
|
public function setDefault($value) {
|
2017-04-24 21:15:11 +02:00
|
|
|
$this->default = BuilderHelpers::normalizeValue($value);
|
2012-03-11 00:06:02 +01:00
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-07-22 21:41:21 +02:00
|
|
|
* Sets type for the parameter.
|
2012-03-11 00:06:02 +01:00
|
|
|
*
|
2018-07-22 21:41:21 +02:00
|
|
|
* @param string|Node\Name|Node\NullableType $type Parameter type
|
2012-03-11 00:06:02 +01:00
|
|
|
*
|
2014-12-19 17:21:46 +01:00
|
|
|
* @return $this The builder instance (for fluid interface)
|
2012-03-11 00:06:02 +01:00
|
|
|
*/
|
2018-07-22 21:41:21 +02:00
|
|
|
public function setType($type) {
|
2017-04-24 21:15:11 +02:00
|
|
|
$this->type = BuilderHelpers::normalizeType($type);
|
2017-04-28 19:09:39 +02:00
|
|
|
if ($this->type == 'void') {
|
2016-09-16 13:52:47 +02:00
|
|
|
throw new \LogicException('Parameter type cannot be void');
|
2012-03-11 00:06:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2018-07-22 21:41:21 +02:00
|
|
|
/**
|
|
|
|
* Sets type for the parameter.
|
|
|
|
*
|
|
|
|
* @param string|Node\Name|Node\NullableType $type Parameter type
|
|
|
|
*
|
|
|
|
* @return $this The builder instance (for fluid interface)
|
|
|
|
*
|
|
|
|
* @deprecated Use setType() instead
|
|
|
|
*/
|
|
|
|
public function setTypeHint($type) {
|
|
|
|
return $this->setType($type);
|
|
|
|
}
|
|
|
|
|
2012-03-11 00:06:02 +01:00
|
|
|
/**
|
|
|
|
* Make the parameter accept the value by reference.
|
|
|
|
*
|
2014-12-19 17:21:46 +01:00
|
|
|
* @return $this The builder instance (for fluid interface)
|
2012-03-11 00:06:02 +01:00
|
|
|
*/
|
|
|
|
public function makeByRef() {
|
|
|
|
$this->byRef = true;
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2017-04-16 12:45:18 +02:00
|
|
|
/**
|
|
|
|
* Make the parameter variadic
|
|
|
|
*
|
|
|
|
* @return $this The builder instance (for fluid interface)
|
|
|
|
*/
|
|
|
|
public function makeVariadic() {
|
|
|
|
$this->variadic = true;
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2012-03-11 00:06:02 +01:00
|
|
|
/**
|
|
|
|
* Returns the built parameter node.
|
|
|
|
*
|
2014-02-06 14:44:16 +01:00
|
|
|
* @return Node\Param The built parameter node
|
2012-03-11 00:06:02 +01:00
|
|
|
*/
|
2017-04-28 21:40:59 +02:00
|
|
|
public function getNode() : Node {
|
2014-02-06 14:44:16 +01:00
|
|
|
return new Node\Param(
|
2017-01-19 23:32:49 +01:00
|
|
|
new Node\Expr\Variable($this->name),
|
2017-04-19 11:17:52 +02:00
|
|
|
$this->default, $this->type, $this->byRef, $this->variadic
|
2012-03-11 00:06:02 +01:00
|
|
|
);
|
|
|
|
}
|
2016-04-09 11:41:38 +02:00
|
|
|
}
|