. */ declare(strict_types=1); namespace Fisharebest\Webtrees; use PHPUnit\Framework\Attributes\CoversClass; #[CoversClass(Log::class)] class LogTest extends TestCase { /** * Test that the class exists */ public function testClassExists(): void { self::assertTrue(class_exists(Log::class)); } }