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