You are here

public function ClassCollectionLoaderTest::getDifferentOrders in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/class-loader/Tests/ClassCollectionLoaderTest.php \Symfony\Component\ClassLoader\Tests\ClassCollectionLoaderTest::getDifferentOrders()

File

vendor/symfony/class-loader/Tests/ClassCollectionLoaderTest.php, line 73

Class

ClassCollectionLoaderTest

Namespace

Symfony\Component\ClassLoader\Tests

Code

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',
      ),
    ),
  );
}