1
0
Fork 0
composer/tests/Composer/Test/Autoload/Fixtures/php5.4/traits.php

31 lines
273 B
PHP

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