public function ClassCollectionLoaderTest::getDifferentOrdersForTraits in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/symfony/class-loader/Tests/ClassCollectionLoaderTest.php \Symfony\Component\ClassLoader\Tests\ClassCollectionLoaderTest::getDifferentOrdersForTraits()
File
- vendor/
symfony/ class-loader/ Tests/ ClassCollectionLoaderTest.php, line 136
Class
Namespace
Symfony\Component\ClassLoader\TestsCode
public function getDifferentOrdersForTraits() {
return array(
array(
array(
'ClassesWithParents\\E',
'ClassesWithParents\\ATrait',
),
),
array(
array(
'ClassesWithParents\\E',
),
),
);
}