Example #1
0
 /**
  * Register the service provider.
  *
  * @return void
  */
 public function register()
 {
     parent::register();
     $this->registerResourceWatcher();
     $this->registerWatcher();
     $this->registerTester();
     $this->registerWatchCommand();
     $this->registerTestCommand();
     $this->registerRoutes();
 }
Example #2
0
 /**
  * Register the service provider.
  *
  * @return void
  */
 public function register()
 {
     parent::register();
     if ($this->getConfig('enabled')) {
         $this->registerAuthentication();
         $this->registerRepositories();
         $this->registerTracker();
         $this->registerTablesCommand();
         $this->registerExecutionCallback();
         $this->registerUserCheckCallback();
         $this->registerSqlQueryLogWatcher();
         $this->registerGlobalEventLogger();
         $this->registerDatatables();
         $this->registerGlobalViewComposers();
         $this->commands('tracker.tables.command');
     }
 }
Example #3
0
 /**
  * Register the service provider.
  *
  * @return void
  */
 public function register()
 {
     parent::register();
     $this->registerFileSystem();
     $this->registerCache();
     $this->registerFirewall();
     $this->registerDataRepository();
     $this->registerMigrator();
     $this->registerReportCommand();
     $this->registerTablesCommand();
     if ($this->getConfig('use_database')) {
         $this->registerWhitelistCommand();
         $this->registerBlacklistCommand();
         $this->registerRemoveCommand();
         $this->registerClearCommand();
     }
     $this->registerFilters();
 }
Example #4
0
 /**
  * Register the service provider.
  *
  * @return void
  */
 public function register()
 {
     parent::register();
     $this->registerConfig();
     if ($this->getConfig('enabled')) {
         $this->registerAuthentication();
         $this->registerMigrator();
         $this->registerRepositories();
         $this->registerTracker();
         $this->registerTablesCommand();
         $this->registerUpdateParserCommand();
         $this->registerExecutionCallBack();
         $this->registerSqlQueryLogWatcher();
         $this->registerGlobalEventLogger();
         $this->registerDatatables();
         $this->commands('tracker.tables.command');
         $this->commands('tracker.updateparser.command');
     }
 }
 /**
  * Register the service provider.
  *
  * @return void
  */
 public function register()
 {
     parent::register();
     $this->registerZipCode();
 }