/**
  * Perform chores on boot.
  *
  * @param  Application $app
  */
 public function boot(Application $app)
 {
     // Register command routes
     $app->command('install.run-proxy');
     $app->command('install.generate-proxy');
 }
 /**
  * {@inheritDoc}
  */
 public function boot(Application $app)
 {
     // Register command routes
     $app->command('email.send');
 }
 /**
  * Perform chores on boot. (None required here.)
  *
  * @param  Application $app
  */
 public function boot(Application $app)
 {
     // Register command routes
     $app->command('migrations.run-proxy');
     $app->command('migrations.create-proxy');
 }
 /**
  * {@inheritDoc}
  */
 public function boot(Application $app)
 {
     // Register command routes
     $app->command('resque.command-proxy');
 }