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
|
|
|
|
{
|
2020-08-09 17:37:31 +02:00
|
|
|
/** @var Identifier|null Parameter name (for named parameters) */
|
|
|
|
public $name;
|
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
|
2020-08-09 17:37:31 +02:00
|
|
|
* @param Identifier|null $name Parameter name (for named parameters)
|
2014-02-06 14:44:16 +01:00
|
|
|
*/
|
2020-08-09 17:37:31 +02:00
|
|
|
public function __construct(
|
|
|
|
Expr $value, bool $byRef = false, bool $unpack = false, array $attributes = [],
|
|
|
|
Identifier $name = null
|
|
|
|
) {
|
2019-05-12 14:55:21 +02:00
|
|
|
$this->attributes = $attributes;
|
2020-08-09 17:37:31 +02:00
|
|
|
$this->name = $name;
|
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 {
|
2020-08-09 17:37:31 +02:00
|
|
|
return ['name', 'value', 'byRef', 'unpack'];
|
2014-02-06 14:44:16 +01:00
|
|
|
}
|
2017-11-12 21:25:57 +01:00
|
|
|
|
2018-01-10 18:57:48 +01:00
|
|
|
public function getType() : string {
|
2017-11-12 21:25:57 +01:00
|
|
|
return 'Arg';
|
|
|
|
}
|
2015-02-28 18:44:28 +01:00
|
|
|
}
|