mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-27 04:28:44 +02:00
- Autoloader for portal files in the itop-portal-base module - Dependencies moved to root composer.json - Add autoloader for /core and /application content
33 lines
286 B
PHP
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;
|
|
}
|
|
}
|