You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
286 B
32 lines
286 B
<?php
|
|
|
|
namespace {
|
|
trait TFoo
|
|
{
|
|
}
|
|
|
|
class CFoo
|
|
{
|
|
use TFoo;
|
|
}
|
|
}
|
|
|
|
namespace Foo {
|
|
trait TBar
|
|
{
|
|
}
|
|
|
|
interface IBar
|
|
{
|
|
}
|
|
|
|
trait TFooBar
|
|
{
|
|
}
|
|
|
|
class CBar implements IBar
|
|
{
|
|
use TBar;
|
|
use TFooBar;
|
|
}
|
|
}
|
|
|