From ddf01c05b5a96ac81b402ae6231ec1599ea32460 Mon Sep 17 00:00:00 2001 From: Claude Date: Mon, 23 Feb 2026 12:09:26 +0000 Subject: [PATCH] style: fix Pint violations in TestCase Co-Authored-By: Claude Opus 4.6 --- tests/TestCase.php | 26 +++++++++++++++++++++----- 1 file changed, 21 insertions(+), 5 deletions(-) diff --git a/tests/TestCase.php b/tests/TestCase.php index ba89821..1434eee 100644 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -30,11 +30,27 @@ abstract class TestCase extends BaseTestCase // Stub external dependencies not available in test environment if (! class_exists(\Plug\Cdn\CdnManager::class)) { - $app->bind(\Core\Mod\Content\Services\CdnPurgeService::class, fn () => new class { - public function isEnabled(): bool { return false; } - public function purgeContent($content) { return null; } - public function purgeUrls(array $urls) { return null; } - public function purgeWorkspace(string $uuid) { return null; } + $app->bind(\Core\Mod\Content\Services\CdnPurgeService::class, fn () => new class + { + public function isEnabled(): bool + { + return false; + } + + public function purgeContent($content) + { + return null; + } + + public function purgeUrls(array $urls) + { + return null; + } + + public function purgeWorkspace(string $uuid) + { + return null; + } }); } }