Symfony\Component\HttpKernel\Bundle\Bundle::shutdown PHP Method

shutdown() public method

Shutdowns the Bundle.
public shutdown ( )
    public function shutdown()
    {
    }

Usage Example

 /**
  * Shutdowns the Bundle.
  */
 public function shutdown()
 {
     if ($this->container->getParameter('liuggio_rackspace_cloud_files.stream_wrapper.register')) {
         $swc = $this->container->getParameter('liuggio_rackspace_cloud_files.stream_wrapper.class');
         $swc::unRegisterStreamWrapperClass();
     }
     parent::shutdown();
 }
All Usage Examples Of Symfony\Component\HttpKernel\Bundle\Bundle::shutdown