@@ -24,7 +24,7 @@ public function boot()
2424 $ this ->publishConfig ();
2525
2626 if (config ('musonza_chat.should_load_routes ' )) {
27- require __DIR__ . '/Http/routes.php ' ;
27+ require __DIR__ . '/Http/routes.php ' ;
2828 }
2929 }
3030
@@ -35,7 +35,7 @@ public function boot()
3535 */
3636 public function register ()
3737 {
38- $ this ->mergeConfigFrom (__DIR__ . '/../config/musonza_chat.php ' , 'musonza_chat ' );
38+ $ this ->mergeConfigFrom (__DIR__ . '/../config/musonza_chat.php ' , 'musonza_chat ' );
3939 $ this ->registerChat ();
4040 }
4141
@@ -59,8 +59,8 @@ private function registerChat()
5959 public function publishMigrations ()
6060 {
6161 $ timestamp = date ('Y_m_d_His ' , time ());
62- $ stub = __DIR__ . '/../database/migrations/create_chat_tables.php ' ;
63- $ target = $ this ->app ->databasePath (). '/migrations/ ' . $ timestamp. '_create_chat_tables.php ' ;
62+ $ stub = __DIR__ . '/../database/migrations/create_chat_tables.php ' ;
63+ $ target = $ this ->app ->databasePath () . '/migrations/ ' . $ timestamp . '_create_chat_tables.php ' ;
6464
6565 $ this ->publishes ([$ stub => $ target ], 'chat.migrations ' );
6666 }
@@ -73,7 +73,7 @@ public function publishMigrations()
7373 public function publishConfig ()
7474 {
7575 $ this ->publishes ([
76- __DIR__ . '/../config ' => config_path (),
76+ __DIR__ . '/../config ' => config_path (),
7777 ], 'chat.config ' );
7878 }
7979}
0 commit comments