<?php
namespace ApiV3Bundle;
use Symfony\Component\HttpKernel\Bundle\Bundle;
use ApiV3Bundle\Util\AssetHelper;
class ApiV3Bundle extends Bundle
{
const API_PREFIX = '/api_v3';
public function boot()
{
parent::boot();
$this->initEnv();
}
private function initEnv()
{
AssetHelper::setContainer($this->container);
}
}