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

31 lines
273 B
PHP
Raw Normal View History

2012-03-21 11:57:50 +00:00
<?php
namespace {
2012-08-18 14:22:15 +00:00
trait TFoo
{
2012-03-21 11:57:50 +00:00
}
2012-06-14 10:10:01 +00:00
class CFoo
{
2012-03-21 11:57:50 +00:00
use TFoo;
}
}
namespace Foo {
2012-08-18 14:22:15 +00:00
trait TBar
{
2012-03-21 11:57:50 +00:00
}
2012-08-18 14:22:15 +00:00
interface IBar
{
2012-03-21 11:57:50 +00:00
}
2012-08-18 14:22:15 +00:00
trait TFooBar
{
2012-03-21 11:57:50 +00:00
}
2012-06-14 10:10:01 +00:00
class CBar implements IBar
{
2012-03-21 11:57:50 +00:00
use TBar, TFooBar;
}
}