Skip to content

Commit

Permalink
more fixture
Browse files Browse the repository at this point in the history
  • Loading branch information
samsonasik committed Jan 16, 2025
1 parent f0d7821 commit 7ea6dbd
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions tests/Issues/InlineTags/Fixture/with_description.php.inc
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<?php

use PHPUnit\Framework\TestCase;

/**
* @copyright Example {@link https://example.com} some description
* @covers \Tests\BarController
*/
class WithDescription extends TestCase
{
}

?>
-----
<?php

use PHPUnit\Framework\TestCase;

/**
* @copyright Example {@link https://example.com} some description
*/
#[\PHPUnit\Framework\Attributes\CoversClass(\Tests\BarController::class)]
class WithDescription extends TestCase
{
}

?>

0 comments on commit 7ea6dbd

Please sign in to comment.