From 99526d240322b456a21b49e1d812953ccca846a3 Mon Sep 17 00:00:00 2001 From: StyleCI Bot Date: Tue, 11 Jun 2024 09:42:34 +0000 Subject: [PATCH] Apply fixes from StyleCI --- tests/TestCase.php | 8 ++++---- tests/Unit/ReactsProfileModelTest.php | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/tests/TestCase.php b/tests/TestCase.php index abb582a..dbf5b0c 100644 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -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'); } /** @@ -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(); diff --git a/tests/Unit/ReactsProfileModelTest.php b/tests/Unit/ReactsProfileModelTest.php index 1efabbb..473a923 100644 --- a/tests/Unit/ReactsProfileModelTest.php +++ b/tests/Unit/ReactsProfileModelTest.php @@ -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();