Files
tougao/vendor/symfony/class-loader/Tests/Fixtures/php5.4/traits.php
wangjinlei c1885928ff 20220406
2022-04-06 18:02:49 +08:00

33 lines
286 B
PHP

<?php
namespace {
trait TFoo
{
}
class CFoo
{
use TFoo;
}
}
namespace Foo {
trait TBar
{
}
interface IBar
{
}
trait TFooBar
{
}
class CBar implements IBar
{
use TBar;
use TFooBar;
}
}