Current Path : /opt/alt/php55/usr/share/pear/test/ClassLoader/Symfony/Component/ClassLoader/Tests/Fixtures/deps/ |
Current File : //opt/alt/php55/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; }