diff --git a/.gitignore b/.gitignore index abb1487..e54b69f 100644 --- a/.gitignore +++ b/.gitignore @@ -6,7 +6,7 @@ .env .env.testing .env.backup -.phpunit.result.cache +/.phpunit.cache docker-compose.override.yml Homestead.json Homestead.yaml diff --git a/composer.json b/composer.json index a822bd3..1538d58 100644 --- a/composer.json +++ b/composer.json @@ -21,7 +21,7 @@ "mockery/mockery": "^1.4.4", "nunomaduro/collision": "^7.0", "nunomaduro/larastan": "^2.4", - "phpunit/phpunit": "^9.5.10", + "phpunit/phpunit": "^10.0", "spatie/laravel-ignition": "^2.0" }, "autoload": { diff --git a/tests/Feature/Api/UserActionTest.php b/tests/Feature/Api/UserActionTest.php index 8ceebc2..6efdfd8 100644 --- a/tests/Feature/Api/UserActionTest.php +++ b/tests/Feature/Api/UserActionTest.php @@ -10,7 +10,7 @@ use Illuminate\Support\Str; use Tests\TestCase; -class UserActionTest extends TestCase +final class UserActionTest extends TestCase { use RefreshDatabase;