Skip to content

Commit dd89120

Browse files
committed
Added missing @author annotation to Integration test suite
1 parent 1f4d518 commit dd89120

File tree

7 files changed

+20
-0
lines changed

7 files changed

+20
-0
lines changed

tests/Integration/src/Enum/PullRequestLabelEnum.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66

77
use Yokai\EnumBundle\Enum;
88

9+
/**
10+
* @author Yann Eugoné <[email protected]>
11+
*/
912
final class PullRequestLabelEnum extends Enum
1013
{
1114
private const LABELS = ['feature', 'bugfix', 'hotfix', '1.x', '2.x', '3.x'];

tests/Integration/src/Enum/PullRequestStatusEnum.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@
88
use Yokai\EnumBundle\MyCLabsTranslatedEnum;
99
use Yokai\EnumBundle\Tests\Integration\App\Model\Status;
1010

11+
/**
12+
* @author Yann Eugoné <[email protected]>
13+
*/
1114
final class PullRequestStatusEnum extends MyCLabsTranslatedEnum
1215
{
1316
public function __construct(TranslatorInterface $translator)

tests/Integration/src/Form/PullRequestType.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@
99
use Symfony\Component\OptionsResolver\OptionsResolver;
1010
use Yokai\EnumBundle\Tests\Integration\App\Model\PullRequest;
1111

12+
/**
13+
* @author Yann Eugoné <[email protected]>
14+
*/
1215
final class PullRequestType extends AbstractType
1316
{
1417
public function buildForm(FormBuilderInterface $builder, array $options): void

tests/Integration/src/Kernel.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@
99
use Symfony\Component\HttpKernel\Kernel as BaseKernel;
1010
use Yokai\EnumBundle\YokaiEnumBundle;
1111

12+
/**
13+
* @author Yann Eugoné <[email protected]>
14+
*/
1215
final class Kernel extends BaseKernel
1316
{
1417
public function registerBundles(): iterable

tests/Integration/src/Model/PullRequest.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@
88
use Yokai\EnumBundle\Tests\Integration\App\Enum\PullRequestStatusEnum;
99
use Yokai\EnumBundle\Tests\Integration\App\Enum\PullRequestLabelEnum;
1010

11+
/**
12+
* @author Yann Eugoné <[email protected]>
13+
*/
1114
final class PullRequest
1215
{
1316
/**

tests/Integration/src/Model/Status.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
* @method static self OPENED
1111
* @method static self MERGED
1212
* @method static self CLOSED
13+
*
14+
* @author Yann Eugoné <[email protected]>
1315
*/
1416
final class Status extends Enum
1517
{

tests/Integration/tests/PullRequestFormTest.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@
1515
use Yokai\EnumBundle\Tests\Integration\App\Model\PullRequest;
1616
use Yokai\EnumBundle\Tests\Integration\App\Model\Status;
1717

18+
/**
19+
* @author Yann Eugoné <[email protected]>
20+
*/
1821
final class PullRequestFormTest extends KernelTestCase
1922
{
2023
public function testBuildForm(): void

0 commit comments

Comments
 (0)