You are here

protected function OptimizedPhpArrayDumperTest::getCollection in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/tests/Drupal/Tests/Component/DependencyInjection/Dumper/OptimizedPhpArrayDumperTest.php \Drupal\Tests\Component\DependencyInjection\Dumper\OptimizedPhpArrayDumperTest::getCollection()

Helper function to return a machine-optimized collection.

1 call to OptimizedPhpArrayDumperTest::getCollection()
OptimizedPhpArrayDumperTest::getDefinitionsDataProvider in core/tests/Drupal/Tests/Component/DependencyInjection/Dumper/OptimizedPhpArrayDumperTest.php
Data provider for testGetServiceDefinitions().
1 method overrides OptimizedPhpArrayDumperTest::getCollection()
PhpArrayDumperTest::getCollection in core/tests/Drupal/Tests/Component/DependencyInjection/Dumper/PhpArrayDumperTest.php
Helper function to return a machine-optimized collection.

File

core/tests/Drupal/Tests/Component/DependencyInjection/Dumper/OptimizedPhpArrayDumperTest.php, line 579
Contains \Drupal\Tests\Component\DependencyInjection\Dumper\OptimizedPhpArrayDumperTest.

Class

OptimizedPhpArrayDumperTest
@coversDefaultClass \Drupal\Component\DependencyInjection\Dumper\OptimizedPhpArrayDumper @group DependencyInjection

Namespace

Drupal\Tests\Component\DependencyInjection\Dumper

Code

protected function getCollection($collection, $resolve = TRUE) {
  return (object) array(
    'type' => 'collection',
    'value' => $collection,
    'resolve' => $resolve,
  );
}