rector/vendor/nikic/php-parser/lib/PhpParser/Node/VariadicPlaceholder.php
Tomas Votruba 73d7212e05 Updated Rector to commit 17cfa9f376
17cfa9f376 Update to nikic/php-parser 4.13.0 (#904)
2021-09-27 15:43:15 +00:00

30 lines
661 B
PHP

<?php
declare (strict_types=1);
namespace PhpParser\Node;
use PhpParser\NodeAbstract;
/**
* Represents the "..." in "foo(...)" of the first-class callable syntax.
*/
class VariadicPlaceholder extends \PhpParser\NodeAbstract
{
/**
* Create a variadic argument placeholder (first-class callable syntax).
*
* @param array $attributes Additional attributes
*/
public function __construct(array $attributes = [])
{
$this->attributes = $attributes;
}
public function getType() : string
{
return 'VariadicPlaceholder';
}
public function getSubNodeNames() : array
{
return [];
}
}