You are here

public function Psr4ClassLoaderTest::getLoadNonexistentClassTests in Zircon Profile 8

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

Return value

array

File

vendor/symfony/class-loader/Tests/Psr4ClassLoaderTest.php, line 64

Class

Psr4ClassLoaderTest

Namespace

Symfony\Component\ClassLoader\Tests

Code

public function getLoadNonexistentClassTests() {
  return array(
    array(
      'Acme\\DemoLib\\I_Do_Not_Exist',
    ),
    array(
      'UnknownVendor\\SomeLib\\I_Do_Not_Exist',
    ),
  );
}