webservice = $webservice; } /** * @return array */ public function getFunctions() { return array( new \Twig_SimpleFunction('remote_client', array($this, 'getClient')), ); } /** * @param int $clientId * @return string */ public function getClient($clientId) { return $this->webservice->getById('client', $clientId); } /** * @return string */ public function getName() { return 'remote_client_extension'; } }