parser/phpast/samples/class-use.php

9 lines
49 B
PHP
Raw Normal View History

<?php
trait Foo {
}
class Bar {
use Foo;
}