You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 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;
}
}