for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the Ivory Google Map bundle package.
*
* (c) Eric GELOEN <[email protected]>
* For the full copyright and license information, please read the LICENSE
* file that was distributed with this source code.
*/
namespace Ivory\GoogleMapBundle\Templating;
use Ivory\GoogleMap\Helper\ApiHelper as BaseApiHelper;
use Symfony\Component\Templating\Helper\Helper;
/**
* @author GeLo <[email protected]>
class ApiHelper extends Helper
{
* @var BaseApiHelper
private $apiHelper;
* @param BaseApiHelper $apiHelper
public function __construct(BaseApiHelper $apiHelper)
$this->apiHelper = $apiHelper;
}
* @param object[] $objects
* @return string
public function render(array $objects)
return $this->apiHelper->render($objects);
* {@inheritdoc}
public function getName()
return 'ivory_google_api';