public function bootstrap(Application $app)
 {
     $fs = new Filesystem();
     if ($fs->exists($app->getCachedServicesPath())) {
         $fs->remove($app->getCachedServicesPath());
     }
     if ($fs->exists($app->getCachedCompilePath())) {
         $fs->remove($app->getCachedCompilePath());
     }
 }