function OptimizedPhpArrayDumperTest::getPrivateServiceCall
Helper function to return a private service definition.
2 calls to OptimizedPhpArrayDumperTest::getPrivateServiceCall()
- OptimizedPhpArrayDumperTest::getDefinitionsDataProvider in core/
tests/ Drupal/ Tests/ Component/ DependencyInjection/ Dumper/ OptimizedPhpArrayDumperTest.php  - Data provider for testGetServiceDefinitions().
 - OptimizedPhpArrayDumperTest::testGetServiceDefinitionWithReferenceToAlias in core/
tests/ Drupal/ Tests/ Component/ DependencyInjection/ Dumper/ OptimizedPhpArrayDumperTest.php  - Tests that references to aliases work correctly.
 
File
- 
              core/
tests/ Drupal/ Tests/ Component/ DependencyInjection/ Dumper/ OptimizedPhpArrayDumperTest.php, line 706  
Class
- OptimizedPhpArrayDumperTest
 - @coversDefaultClass \Drupal\Component\DependencyInjection\Dumper\OptimizedPhpArrayDumper[[api-linebreak]] @group DependencyInjection
 
Namespace
Drupal\Tests\Component\DependencyInjection\DumperCode
protected static function getPrivateServiceCall($id, $service_definition, $shared = FALSE) {
  if (!$id) {
    $hash = Crypt::hashBase64(serialize($service_definition));
    $id = 'private__' . $hash;
  }
  return (object) [
    'type' => 'private_service',
    'id' => $id,
    'value' => $service_definition,
    'shared' => $shared,
  ];
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.