mirror of
https://github.com/phabelio/PHP-Parser.git
synced 2024-12-13 01:27:30 +01:00
13 lines
208 B
PHP
13 lines
208 B
PHP
<?php
|
|
|
|
namespace PhpParser\Node\Stmt;
|
|
|
|
use PhpParser\Node;
|
|
|
|
/**
|
|
* @property Node\Name $trait Trait name
|
|
* @property string $method Method name
|
|
*/
|
|
abstract class TraitUseAdaptation extends Node\Stmt
|
|
{
|
|
} |