2017-08-18 22:57:27 +02:00
|
|
|
<?php declare(strict_types=1);
|
2014-02-06 14:44:16 +01:00
|
|
|
|
|
|
|
namespace PhpParser\Node;
|
|
|
|
|
|
|
|
use PhpParser\NodeAbstract;
|
|
|
|
|
|
|
|
class Arg extends NodeAbstract
|
|
|
|
{
|
2015-02-28 18:44:28 +01:00
|
|
|
/** @var Expr Value to pass */
|
|
|
|
public $value;
|
|
|
|
/** @var bool Whether to pass by ref */
|
|
|
|
public $byRef;
|
|
|
|
/** @var bool Whether to unpack the argument */
|
|
|
|
public $unpack;
|
|
|
|
|
2014-02-06 14:44:16 +01:00
|
|
|
/**
|
|
|
|
* Constructs a function call argument node.
|
|
|
|
*
|
|
|
|
* @param Expr $value Value to pass
|
|
|
|
* @param bool $byRef Whether to pass by ref
|
2014-03-26 18:42:46 +01:00
|
|
|
* @param bool $unpack Whether to unpack the argument
|
2014-02-06 14:44:16 +01:00
|
|
|
* @param array $attributes Additional attributes
|
|
|
|
*/
|
2017-08-13 14:06:08 +02:00
|
|
|
public function __construct(Expr $value, bool $byRef = false, bool $unpack = false, array $attributes = []) {
|
2015-05-02 22:17:34 +02:00
|
|
|
parent::__construct($attributes);
|
2015-02-28 18:44:28 +01:00
|
|
|
$this->value = $value;
|
|
|
|
$this->byRef = $byRef;
|
|
|
|
$this->unpack = $unpack;
|
|
|
|
}
|
|
|
|
|
2017-04-28 21:40:59 +02:00
|
|
|
public function getSubNodeNames() : array {
|
2017-08-13 14:06:08 +02:00
|
|
|
return ['value', 'byRef', 'unpack'];
|
2014-02-06 14:44:16 +01:00
|
|
|
}
|
2015-02-28 18:44:28 +01:00
|
|
|
}
|