1
0
Fork 0
mirror of https://github.com/composer/composer synced 2025-05-09 00:22:53 +00:00
composer/tests/Composer/Test/Autoload/Fixtures/php5.4/traits.php
Grégoire Pineau f4e9dd4fb8 Fixed PSR rules
2012-06-14 12:10:01 +02:00

30 lines
261 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;
}
}