public function ClassCollectionLoaderTest::getDifferentOrders 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::getDifferentOrders()
File
- vendor/
symfony/ class-loader/ Tests/ ClassCollectionLoaderTest.php, line 73
Class
Namespace
Symfony\Component\ClassLoader\TestsCode
public function getDifferentOrders() {
return array(
array(
array(
'ClassesWithParents\\A',
'ClassesWithParents\\CInterface',
'ClassesWithParents\\GInterface',
'ClassesWithParents\\B',
),
),
array(
array(
'ClassesWithParents\\B',
'ClassesWithParents\\A',
'ClassesWithParents\\CInterface',
),
),
array(
array(
'ClassesWithParents\\CInterface',
'ClassesWithParents\\B',
'ClassesWithParents\\A',
),
),
array(
array(
'ClassesWithParents\\A',
),
),
);
}