%PDF- %PDF-
| Direktori : /home/tjamichg/cursos.tjamich.gob.mx/vendor/symfony/class-loader/Tests/Fixtures/php5.4/ |
| Current File : /home/tjamichg/cursos.tjamich.gob.mx/vendor/symfony/class-loader/Tests/Fixtures/php5.4/traits.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;
}
}