diff options
| author | Greg Roach <greg@subaqua.co.uk> | 2025-02-17 22:17:07 +0000 |
|---|---|---|
| committer | Greg Roach <greg@subaqua.co.uk> | 2025-02-19 10:07:54 +0000 |
| commit | 063e5bfcde5bb7ea21d13dce1b6ad10e52b00c24 (patch) | |
| tree | 85c7ea6af6b79764880f7d49f2cf7e417808eaed /tests/app/Factories | |
| parent | 67310607fd01ff3b0380e628afce6d7844afc00a (diff) | |
| download | webtrees-063e5bfcde5bb7ea21d13dce1b6ad10e52b00c24.tar.gz webtrees-063e5bfcde5bb7ea21d13dce1b6ad10e52b00c24.tar.bz2 webtrees-063e5bfcde5bb7ea21d13dce1b6ad10e52b00c24.zip | |
PHPdoc and PHPstan issues
Diffstat (limited to 'tests/app/Factories')
| -rw-r--r-- | tests/app/Factories/SurnameTraditionFactoryTest.php | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/tests/app/Factories/SurnameTraditionFactoryTest.php b/tests/app/Factories/SurnameTraditionFactoryTest.php index 0122dfc6ab..b4538ceb99 100644 --- a/tests/app/Factories/SurnameTraditionFactoryTest.php +++ b/tests/app/Factories/SurnameTraditionFactoryTest.php @@ -50,9 +50,6 @@ class SurnameTraditionFactoryTest extends TestCase self::assertInstanceOf(SpanishSurnameTradition::class, $factory->make(SurnameTraditionFactoryInterface::SPANISH)); } - /** - * Test create() with invalid input - */ public function testCreateInvalid(): void { $factory = new SurnameTraditionFactory(); @@ -60,9 +57,6 @@ class SurnameTraditionFactoryTest extends TestCase self::assertInstanceOf(DefaultSurnameTradition::class, $factory->make('FOOBAR')); } - /** - * Test allDescriptions() - */ public function testAllDescriptions(): void { $descriptions = Registry::surnameTraditionFactory()->list(); |
