Skip to content

Commit

Permalink
Apply fixes from StyleCI (#46)
Browse files Browse the repository at this point in the history
Co-authored-by: StyleCI Bot <[email protected]>
  • Loading branch information
hkp22 and StyleCIBot committed Jun 11, 2024
1 parent b309f26 commit 383dade
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions tests/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ protected function publishPackageMigrations()
*/
protected function destroyPackageMigrations()
{
File::cleanDirectory(__DIR__ . '/../vendor/orchestra/testbench-core/laravel/database/migrations');
File::cleanDirectory(__DIR__.'/../vendor/orchestra/testbench-core/laravel/database/migrations');
}

/**
Expand Down Expand Up @@ -84,9 +84,9 @@ protected function getPackageProviders($app)
*/
protected function setUpDatabase()
{
include_once __DIR__ . '/../migrations/2018_07_10_000000_create_reactions_table.php';
include_once __DIR__ . '/database/migrations/2018_07_10_000000_create_users_table.php';
include_once __DIR__ . '/database/migrations/2018_07_11_000000_create_articles_table.php';
include_once __DIR__.'/../migrations/2018_07_10_000000_create_reactions_table.php';
include_once __DIR__.'/database/migrations/2018_07_10_000000_create_users_table.php';
include_once __DIR__.'/database/migrations/2018_07_11_000000_create_articles_table.php';

(new \CreateReactionsTable())->up();
(new \CreateUsersTable())->up();
Expand Down
8 changes: 4 additions & 4 deletions tests/Unit/ReactsProfileModelTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
class ReactsProfileModelTest extends TestCase
{
/**
* Actions to be performed on PHPUnit start.
*
* @return void
*/
* Actions to be performed on PHPUnit start.
*
* @return void
*/
protected function setUp(): void
{
parent::setUp();
Expand Down

0 comments on commit 383dade

Please sign in to comment.