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

29 lines
253 B
PHP
Raw Normal View History

2012-03-21 11:57:50 +00:00
<?php
namespace {
trait TFoo {
}
class CFoo {
use TFoo;
}
}
namespace Foo {
trait TBar {
}
interface IBar {
}
trait TFooBar {
}
class CBar implements IBar {
use TBar, TFooBar;
}
}