php-src/ext/reflection/tests/traits002.phpt
2010-05-29 21:55:19 +00:00

55 lines
543 B
PHP

--TEST--
ReflectionClass and Traits
--FILE--
<?php
abstract class foo {
}
trait bar {
}
reflectionclass::export('foo');
reflectionclass::export('bar');
?>
--EXPECTF--
Class [ <user> abstract class foo ] {
@@ %s 3-4
- Constants [0] {
}
- Static properties [0] {
}
- Static methods [0] {
}
- Properties [0] {
}
- Methods [0] {
}
}
Trait [ <user> trait bar ] {
@@ %s 6-8
- Constants [0] {
}
- Static properties [0] {
}
- Static methods [0] {
}
- Properties [0] {
}
- Methods [0] {
}
}