From 94edb32da5da752a6af179d184164e8d2324d345 Mon Sep 17 00:00:00 2001 From: DariusIII Date: Fri, 13 Feb 2026 13:57:51 +0100 Subject: [PATCH] CS fixes --- tests/Unit/CategorizePcGameTest.php | 2 +- tests/Unit/GamesParseTest.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/Unit/CategorizePcGameTest.php b/tests/Unit/CategorizePcGameTest.php index e24b97254..e75d06d4a 100644 --- a/tests/Unit/CategorizePcGameTest.php +++ b/tests/Unit/CategorizePcGameTest.php @@ -16,7 +16,7 @@ class CategorizePcGameTest extends TestCase protected function setUp(): void { parent::setUp(); - $this->categorizer = new PcCategorizer(); + $this->categorizer = new PcCategorizer; } public function test_pc_game_detects_common_scene_groups(): void diff --git a/tests/Unit/GamesParseTest.php b/tests/Unit/GamesParseTest.php index b074696c5..ebdfdc26e 100644 --- a/tests/Unit/GamesParseTest.php +++ b/tests/Unit/GamesParseTest.php @@ -15,7 +15,7 @@ class GamesParseTest extends TestCase protected function setUp(): void { parent::setUp(); - $this->parser = new GamesTitleParser(); + $this->parser = new GamesTitleParser; } #[DataProvider('titlesProvider')]