You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
889 B
33 lines
889 B
<?php declare(strict_types=1); |
|
|
|
namespace PhpParser\Node\Stmt; |
|
|
|
use PhpParser\Node; |
|
|
|
class TraitUse extends Node\Stmt { |
|
/** @var Node\Name[] Traits */ |
|
public array $traits; |
|
/** @var TraitUseAdaptation[] Adaptations */ |
|
public array $adaptations; |
|
|
|
/** |
|
* Constructs a trait use node. |
|
* |
|
* @param Node\Name[] $traits Traits |
|
* @param TraitUseAdaptation[] $adaptations Adaptations |
|
* @param array<string, mixed> $attributes Additional attributes |
|
*/ |
|
public function __construct(array $traits, array $adaptations = [], array $attributes = []) { |
|
$this->attributes = $attributes; |
|
$this->traits = $traits; |
|
$this->adaptations = $adaptations; |
|
} |
|
|
|
public function getSubNodeNames(): array { |
|
return ['traits', 'adaptations']; |
|
} |
|
|
|
public function getType(): string { |
|
return 'Stmt_TraitUse'; |
|
} |
|
}
|
|
|