public function format()
 {
     $this->sentHeaders();
     $this->removeConditionals('link');
     $this->removeConditionals('style');
     $this->removeConditionals('script');
     LazyLoad::imgLazyLoad($this->config);
     $this->organizeHeaderOrder();
     $this->cssIntegrate();
     $this->javascriptIntegrate();
     $this->returnConditionals('link');
     $this->returnConditionals('style');
     $this->returnConditionals('script');
     $this->removeHttpProtocol();
 }