You are here

public function ClassCollectionLoaderTest::getDifferentOrdersForTraits in Zircon Profile 8.0

Same name and namespace in other branches
  1. 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

ClassCollectionLoaderTest

Namespace

Symfony\Component\ClassLoader\Tests

Code

public function getDifferentOrdersForTraits() {
  return array(
    array(
      array(
        'ClassesWithParents\\E',
        'ClassesWithParents\\ATrait',
      ),
    ),
    array(
      array(
        'ClassesWithParents\\E',
      ),
    ),
  );
}