⬆️ N°4284 Composer libs : update nikic/php-parser

Was done in 3.0.0 with N°3867
This commit is contained in:
Pierre Goiffon
2022-04-29 12:24:23 +02:00
parent 5fe0d0b94f
commit b19c73a36e
288 changed files with 15609 additions and 11148 deletions

View File

@@ -0,0 +1,29 @@
<?php declare(strict_types=1);
namespace PhpParser\Node;
use PhpParser\Node;
use PhpParser\NodeAbstract;
class AttributeGroup extends NodeAbstract
{
/** @var Attribute[] Attributes */
public $attrs;
/**
* @param Attribute[] $attrs PHP attributes
* @param array $attributes Additional node attributes
*/
public function __construct(array $attrs, array $attributes = []) {
$this->attributes = $attributes;
$this->attrs = $attrs;
}
public function getSubNodeNames() : array {
return ['attrs'];
}
public function getType() : string {
return 'AttributeGroup';
}
}