container = $container; $this->drupalProxyOriginalServiceId = $drupal_proxy_original_service_id; } /** * Lazy loads the real service from the container. * * @return object * Returns the constructed real service. */ protected function lazyLoadItself() { if (!isset($this->service)) { $this->service = $this->container->get($this->drupalProxyOriginalServiceId); } return $this->service; } /** * {@inheritdoc} */ public function load($id) { return $this->lazyLoadItself()->load($id); } /** * {@inheritdoc} */ public function delete($id) { return $this->lazyLoadItself()->delete($id); } /** * {@inheritdoc} */ public function update(array $batch) { return $this->lazyLoadItself()->update($batch); } /** * {@inheritdoc} */ public function cleanup() { return $this->lazyLoadItself()->cleanup(); } /** * {@inheritdoc} */ public function create(array $batch) { return $this->lazyLoadItself()->create($batch); } /** * {@inheritdoc} */ public function schemaDefinition() { return $this->lazyLoadItself()->schemaDefinition(); } } }