@@ -20,7 +20,7 @@ public function setUp()
2020 protected function getPackageProviders ($ app )
2121 {
2222 return [
23- ActivitylogServiceProvider::class
23+ ActivitylogServiceProvider::class,
2424 ];
2525 }
2626
@@ -30,7 +30,7 @@ public function getEnvironmentSetUp($app)
3030
3131 $ app ['config ' ]->set ('database.connections.sqlite ' , [
3232 'driver ' => 'sqlite ' ,
33- 'database ' => $ this ->getTempDirectory () . '/database.sqlite ' ,
33+ 'database ' => $ this ->getTempDirectory (). '/database.sqlite ' ,
3434 'prefix ' => '' ,
3535 ]);
3636 $ app ['config ' ]->set ('app.key ' , '6rE9Nz59bGRbeMATftriyQjrpF7DcOQm ' );
@@ -48,7 +48,7 @@ protected function setUpDatabase()
4848
4949 protected function resetDatabase ()
5050 {
51- file_put_contents ($ this ->getTempDirectory () . '/database.sqlite ' , null );
51+ file_put_contents ($ this ->getTempDirectory (). '/database.sqlite ' , null );
5252 }
5353
5454 protected function createActivityLogTable ()
@@ -60,7 +60,7 @@ protected function createActivityLogTable()
6060
6161 public function getTempDirectory (): string
6262 {
63- return __DIR__ . '/temp ' ;
63+ return __DIR__ . '/temp ' ;
6464 }
6565
6666 protected function createTables (...$ tableNames )
@@ -82,6 +82,4 @@ protected function seedModels(...$modelClasses)
8282 }
8383 });
8484 }
85-
86-
8785}
0 commit comments