Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 0752b24

Browse files
olsavmicderrabus
andcommitted
Apply suggestions from code review
Co-authored-by: Alexander M. Turek <[email protected]>
1 parent 08e410e commit 0752b24

2 files changed

Lines changed: 5 additions & 4 deletions

File tree

tests/Doctrine/Tests/Models/Issue9300/Issue9300Child.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class Issue9300Child
2626
public $id;
2727

2828
/**
29-
* @var Collection|Issue9300Parent
29+
* @var Collection<int, Issue9300Parent>
3030
* @ManyToMany(targetEntity="Issue9300Parent")
3131
*/
3232
public $parents;

tests/Doctrine/Tests/ORM/Functional/Ticket/Issue9300Test.php

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,18 +10,19 @@
1010
use Doctrine\Tests\OrmFunctionalTestCase;
1111

1212
/**
13-
* @group 9300
13+
* @group GH-9300
1414
*/
1515
class Issue9300Test extends OrmFunctionalTestCase
1616
{
1717
protected function setUp(): void
1818
{
1919
$this->useModelSet('issue9300');
20+
2021
parent::setUp();
2122
}
2223

2324
/**
24-
* @group #9300
25+
* @group GH-9300
2526
*/
2627
public function testPersistedCollectionIsPresentInOriginalDataAfterFlush(): void
2728
{
@@ -45,7 +46,7 @@ public function testPersistedCollectionIsPresentInOriginalDataAfterFlush(): void
4546
}
4647

4748
/**
48-
* @group #9300
49+
* @group GH-9300
4950
*/
5051
public function testPersistingCollectionAfterFlushWorksAsExpected(): void
5152
{

0 commit comments

Comments
 (0)