php-parser/lib/PhpParser/Builder/Param.php

107 lines
2.4 KiB
PHP
Raw Normal View History

2017-08-18 22:57:27 +02:00
<?php declare(strict_types=1);
2012-03-11 00:06:02 +01:00
namespace PhpParser\Builder;
use PhpParser;
use PhpParser\BuilderHelpers;
use PhpParser\Node;
class Param implements PhpParser\Builder
2012-03-11 00:06:02 +01:00
{
protected $name;
protected $default = null;
/** @var string|Node\Name|Node\NullableType|null */
protected $type = null;
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
*
* @return $this The builder instance (for fluid interface)
2012-03-11 00:06:02 +01:00
*/
public function setDefault($value) {
$this->default = BuilderHelpers::normalizeValue($value);
2012-03-11 00:06:02 +01:00
return $this;
}
/**
* Sets type for the parameter.
2012-03-11 00:06:02 +01:00
*
* @param string|Node\Name|Node\NullableType $type Parameter type
2012-03-11 00:06:02 +01:00
*
* @return $this The builder instance (for fluid interface)
2012-03-11 00:06:02 +01:00
*/
public function setType($type) {
$this->type = BuilderHelpers::normalizeType($type);
if ($this->type == 'void') {
throw new \LogicException('Parameter type cannot be void');
2012-03-11 00:06:02 +01:00
}
return $this;
}
/**
* 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.
*
* @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.
*
* @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 {
return new Node\Param(
2017-01-19 23:32:49 +01:00
new Node\Expr\Variable($this->name),
$this->default, $this->type, $this->byRef, $this->variadic
2012-03-11 00:06:02 +01:00
);
}
}