replace PHPUnit annotations with attributes (#5608)

This commit is contained in:
Kevin Papst
2025-08-11 18:57:42 +02:00
committed by GitHub
parent 04331420ae
commit 24778d3ffb
599 changed files with 1778 additions and 2313 deletions

View File

@@ -12,11 +12,10 @@ namespace App\Tests\Reporting\WeeklyUserList;
use App\Reporting\AbstractUserList;
use App\Reporting\WeeklyUserList\WeeklyUserList;
use App\Tests\Reporting\AbstractUserListTestCase;
use PHPUnit\Framework\Attributes\CoversClass;
/**
* @covers \App\Reporting\WeeklyUserList\WeeklyUserList
* @covers \App\Reporting\AbstractUserList
*/
#[CoversClass(WeeklyUserList::class)]
#[CoversClass(AbstractUserList::class)]
class WeeklyUserListTest extends AbstractUserListTestCase
{
protected function createSut(): AbstractUserList