Skip to content

Commit 458f7f1

Browse files
mehdibojrushlow
authored andcommitted
Update test/Doctrine fixtures
1 parent d317809 commit 458f7f1

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

tests/Doctrine/fixtures/expected_no_overwrite/src/Entity/Client.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ public function setApiKey(string $apiKey): self
6161
}
6262

6363
/**
64-
* @return Collection|Tag[]
64+
* @return Collection<int, Tag>
6565
*/
6666
public function getTags(): Collection
6767
{

tests/Doctrine/fixtures/expected_no_overwrite/src/Entity/User.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public function setUserProfile(?UserProfile $userProfile)
5656
}
5757

5858
/**
59-
* @return Collection|UserAvatar[]
59+
* @return Collection<int, UserAvatar>
6060
*/
6161
public function getAvatars(): Collection
6262
{
@@ -91,7 +91,7 @@ public function getUserProfile(): ?UserProfile
9191
}
9292

9393
/**
94-
* @return Collection|Tag[]
94+
* @return Collection<int, Tag>
9595
*/
9696
public function getTags(): Collection
9797
{

tests/Doctrine/fixtures/expected_overwrite/src/Entity/Client.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ public function setApiKey(string $apiKey): self
6161
}
6262

6363
/**
64-
* @return Collection|Tag[]
64+
* @return Collection<int, Tag>
6565
*/
6666
public function getTags(): Collection
6767
{

tests/Doctrine/fixtures/expected_overwrite/src/Entity/User.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ public function setUserProfile(?UserProfile $userProfile): self
6767
}
6868

6969
/**
70-
* @return Collection|UserAvatar[]
70+
* @return Collection<int, UserAvatar>
7171
*/
7272
public function getAvatars(): Collection
7373
{
@@ -102,7 +102,7 @@ public function getUserProfile(): ?UserProfile
102102
}
103103

104104
/**
105-
* @return Collection|Tag[]
105+
* @return Collection<int, Tag>
106106
*/
107107
public function getTags(): Collection
108108
{

tests/Doctrine/fixtures/expected_xml/src/Entity/UserXml.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public function setName(string $name): self
3737
}
3838

3939
/**
40-
* @return Collection|UserAvatar[]
40+
* @return Collection<int, UserAvatar>
4141
*/
4242
public function getAvatars(): Collection
4343
{

0 commit comments

Comments
 (0)