2014-02-06 14:44:16 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace PhpParser\Node;
|
|
|
|
|
2014-03-26 18:23:30 +01:00
|
|
|
use PhpParser\Error;
|
2014-02-06 14:44:16 +01:00
|
|
|
use PhpParser\NodeAbstract;
|
|
|
|
|
|
|
|
class Param extends NodeAbstract
|
|
|
|
{
|
2015-02-28 18:44:28 +01:00
|
|
|
/** @var null|string|Name Typehint */
|
|
|
|
public $type;
|
|
|
|
/** @var bool Whether parameter is passed by reference */
|
|
|
|
public $byRef;
|
|
|
|
/** @var bool Whether this is a variadic argument */
|
|
|
|
public $variadic;
|
|
|
|
/** @var string Name */
|
|
|
|
public $name;
|
|
|
|
/** @var null|Expr Default value */
|
|
|
|
public $default;
|
|
|
|
|
2014-02-06 14:44:16 +01:00
|
|
|
/**
|
|
|
|
* Constructs a parameter node.
|
|
|
|
*
|
|
|
|
* @param string $name Name
|
|
|
|
* @param null|Expr $default Default value
|
|
|
|
* @param null|string|Name $type Typehint
|
|
|
|
* @param bool $byRef Whether is passed by reference
|
2014-03-26 18:23:30 +01:00
|
|
|
* @param bool $variadic Whether this is a variadic argument
|
2014-02-06 14:44:16 +01:00
|
|
|
* @param array $attributes Additional attributes
|
|
|
|
*/
|
2015-03-28 18:14:24 +01:00
|
|
|
public function __construct($name, Expr $default = null, $type = null, $byRef = false, $variadic = false, array $attributes = array()) {
|
2015-02-28 18:44:28 +01:00
|
|
|
parent::__construct(null, $attributes);
|
|
|
|
$this->type = $type;
|
|
|
|
$this->byRef = $byRef;
|
|
|
|
$this->variadic = $variadic;
|
|
|
|
$this->name = $name;
|
|
|
|
$this->default = $default;
|
2014-03-26 18:23:30 +01:00
|
|
|
|
|
|
|
if ($variadic && null !== $default) {
|
2015-04-18 13:20:39 +02:00
|
|
|
throw new Error('Variadic parameter cannot have a default value', $default->getAttributes());
|
2014-03-26 18:23:30 +01:00
|
|
|
}
|
2014-02-06 14:44:16 +01:00
|
|
|
}
|
2015-02-28 18:44:28 +01:00
|
|
|
|
|
|
|
public function getSubNodeNames() {
|
|
|
|
return array('type', 'byRef', 'variadic', 'name', 'default');
|
|
|
|
}
|
|
|
|
}
|