/**
  * Gets the 'assetic.controller' service.
  *
  * @return \Symfony\Bundle\AsseticBundle\Controller\AsseticController A Symfony\Bundle\AsseticBundle\Controller\AsseticController instance.
  */
 protected function getAssetic_ControllerService()
 {
     $instance = new \Symfony\Bundle\AsseticBundle\Controller\AsseticController($this->get('request'), $this->get('assetic.asset_manager'), $this->get('assetic.cache'), false, $this->get('profiler', ContainerInterface::NULL_ON_INVALID_REFERENCE));
     if ($this->has('assetic.value_supplier.default')) {
         $instance->setValueSupplier($this->get('assetic.value_supplier.default', ContainerInterface::NULL_ON_INVALID_REFERENCE));
     }
     return $instance;
 }
 /**
  * Gets the 'assetic.controller' service.
  *
  * @return Symfony\Bundle\AsseticBundle\Controller\AsseticController A Symfony\Bundle\AsseticBundle\Controller\AsseticController instance.
  */
 protected function getAssetic_ControllerService()
 {
     $instance = new \Symfony\Bundle\AsseticBundle\Controller\AsseticController($this->get('request'), $this->get('assetic.asset_manager'), $this->get('assetic.cache'), false, $this->get('profiler'));
     $instance->setValueSupplier($this->get('assetic.value_supplier.default'));
     return $instance;
 }