comparison vendor/symfony/dependency-injection/LazyProxy/Instantiator/InstantiatorInterface.php @ 14:1fec387a4317

Update Drupal core to 8.5.2 via Composer
author Chris Cannam
date Mon, 23 Apr 2018 09:46:53 +0100
parents 4c8ae668cc8c
children
comparison
equal deleted inserted replaced
13:5fb285c0d0e3 14:1fec387a4317
23 interface InstantiatorInterface 23 interface InstantiatorInterface
24 { 24 {
25 /** 25 /**
26 * Instantiates a proxy object. 26 * Instantiates a proxy object.
27 * 27 *
28 * @param ContainerInterface $container the container from which the service is being requested 28 * @param ContainerInterface $container The container from which the service is being requested
29 * @param Definition $definition the definition of the requested service 29 * @param Definition $definition The definition of the requested service
30 * @param string $id identifier of the requested service 30 * @param string $id Identifier of the requested service
31 * @param callable $realInstantiator zero-argument callback that is capable of producing the real 31 * @param callable $realInstantiator Zero-argument callback that is capable of producing the real service instance
32 * service instance
33 * 32 *
34 * @return object 33 * @return object
35 */ 34 */
36 public function instantiateProxy(ContainerInterface $container, Definition $definition, $id, $realInstantiator); 35 public function instantiateProxy(ContainerInterface $container, Definition $definition, $id, $realInstantiator);
37 } 36 }