示例#1
0
 /**
  * Finishing placing elements if buffering was used
  * 
  * @internal
  * 
  * @return void
  */
 public function __destruct()
 {
     // The __destruct method can't throw unhandled exceptions intelligently, so we will always catch here just in case
     try {
         $this->placeBuffered();
     } catch (Exception $e) {
         fCore::handleException($e);
     }
 }