You are here

public function DefinitionDecoratorTest::provideLegacyPropertyTests in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/dependency-injection/Tests/DefinitionDecoratorTest.php \Symfony\Component\DependencyInjection\Tests\DefinitionDecoratorTest::provideLegacyPropertyTests()

File

vendor/symfony/dependency-injection/Tests/DefinitionDecoratorTest.php, line 69

Class

DefinitionDecoratorTest

Namespace

Symfony\Component\DependencyInjection\Tests

Code

public function provideLegacyPropertyTests() {
  return array(
    array(
      'factoryClass',
      'factory_class',
    ),
    array(
      'factoryMethod',
      'factory_method',
    ),
    array(
      'factoryService',
      'factory_service',
    ),
  );
}