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
273 B
PHTML

<?php
namespace {
12 years ago
trait TFoo
{
}
12 years ago
class CFoo
{
use TFoo;
}
}
namespace Foo {
12 years ago
trait TBar
{
}
12 years ago
interface IBar
{
}
12 years ago
trait TFooBar
{
}
12 years ago
class CBar implements IBar
{
use TBar, TFooBar;
}
}