29 lines
253 B
PHP
29 lines
253 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;
|
||
|
}
|
||
|
}
|