You are here

public function EntityResolverManagerTest::providerTestSetRouteOptionsWithEntityTypeNoUpcasting in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/tests/Drupal/Tests/Core/Entity/EntityResolverManagerTest.php \Drupal\Tests\Core\Entity\EntityResolverManagerTest::providerTestSetRouteOptionsWithEntityTypeNoUpcasting()

Data provider for testSetRouteOptionsWithEntityTypeNoUpcasting.

File

core/tests/Drupal/Tests/Core/Entity/EntityResolverManagerTest.php, line 183
Contains \Drupal\Tests\Core\Entity\EntityResolverManagerTest.

Class

EntityResolverManagerTest
@coversDefaultClass \Drupal\Core\Entity\EntityResolverManager @group Entity

Namespace

Drupal\Tests\Core\Entity

Code

public function providerTestSetRouteOptionsWithEntityTypeNoUpcasting() {
  return array(
    array(
      'Drupal\\Tests\\Core\\Entity\\BasicControllerClass::exampleControllerWithEntityNoUpcasting',
    ),
    array(
      'test_function_controller_no_upcasting',
    ),
  );
}