bootErrorHandling = $bool; return $this; } /** * @param false $flush * @throws Exception */ public function boot($flush = false) { $this->flush = $flush; $this->bootPHP(); $this->bootManifests($flush); $this->bootErrorHandling(); $this->bootConfigs(); $this->setBooted(true); } /** * @return bool */ public function isFlushed() { return $this->flush; } }