Current Path : /proc/thread-self/root/proc/thread-self/root/proc/thread-self/root/proc/self/root/proc/self/root/proc/self/root/proc/self/root/proc/self/root/opt/alt/php54/usr/share/pear/test/ClassLoader/Symfony/Component/ClassLoader/Tests/Fixtures/deps/ |
Current File : //proc/thread-self/root/proc/thread-self/root/proc/thread-self/root/proc/self/root/proc/self/root/proc/self/root/proc/self/root/proc/self/root/opt/alt/php54/usr/share/pear/test/ClassLoader/Symfony/Component/ClassLoader/Tests/Fixtures/deps/traits.php |
<?php trait TD {} trait TZ { use TD; } trait TC { use TD; } trait TB { use TC; } trait TA { use TB; } class CTFoo { use TA; use TZ; } class CTBar { use TZ; use TA; }