Files
Chamilo/vendor/symfony/class-loader/Tests/Fixtures/php5.4/traits.php
2025-04-10 12:24:57 +02: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;
}
}