You are here

public function DefinitionDecoratorTest::getPropertyTests 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::getPropertyTests()

File

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

Class

DefinitionDecoratorTest

Namespace

Symfony\Component\DependencyInjection\Tests

Code

public function getPropertyTests() {
  return array(
    array(
      'class',
      'class',
    ),
    array(
      'factory',
      'factory',
    ),
    array(
      'configurator',
      'configurator',
    ),
    array(
      'file',
      'file',
    ),
  );
}