diff options
| author | Greg Roach <greg@subaqua.co.uk> | 2024-03-26 11:38:51 +0000 |
|---|---|---|
| committer | Greg Roach <greg@subaqua.co.uk> | 2024-03-31 17:33:17 +0100 |
| commit | 202c018b592d5a516e4a465dc6dc515f3be37399 (patch) | |
| tree | 06e060fc19a494f1e5dcf89fc7ce04a8011e8176 /tests/app/Elements/PlaceLivingOrdinanceTest.php | |
| parent | 1ff45046fabc22237b5d0d8e489c96f031fc598d (diff) | |
| download | webtrees-202c018b592d5a516e4a465dc6dc515f3be37399.tar.gz webtrees-202c018b592d5a516e4a465dc6dc515f3be37399.tar.bz2 webtrees-202c018b592d5a516e4a465dc6dc515f3be37399.zip | |
PHPUnit 11 deprecates docblocks, use annotations instead
Diffstat (limited to 'tests/app/Elements/PlaceLivingOrdinanceTest.php')
| -rw-r--r-- | tests/app/Elements/PlaceLivingOrdinanceTest.php | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/tests/app/Elements/PlaceLivingOrdinanceTest.php b/tests/app/Elements/PlaceLivingOrdinanceTest.php index e6bdd30352..edb1395470 100644 --- a/tests/app/Elements/PlaceLivingOrdinanceTest.php +++ b/tests/app/Elements/PlaceLivingOrdinanceTest.php @@ -19,12 +19,11 @@ declare(strict_types=1); namespace Fisharebest\Webtrees\Elements; -/** - * Test harness for the class PlaceLivingOrdinance - * - * @covers \Fisharebest\Webtrees\Elements\AbstractElement - * @covers \Fisharebest\Webtrees\Elements\PlaceLivingOrdinance - */ +use PHPUnit\Framework\Attributes\CoversClass; + + +#[CoversClass(AbstractElement::class)] +#[CoversClass(PlaceLivingOrdinance::class)] class PlaceLivingOrdinanceTest extends AbstractElementTestCase { /** |
