parser/phpast/samples/trait.php
2022-07-25 14:30:47 +01:00

10 lines
83 B
PHP

<?php
trait Foo {}
trait Bar {
var $foo;
public function baz() {
}
}