1
0
Fork 0
composer/tests/Composer/Test/Autoload/Fixtures/php5.4/traits.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;
}
}