Skip to content

Commit d317809

Browse files
mehdibojrushlow
authored andcommitted
Update test fixtures
1 parent d64ef47 commit d317809

12 files changed

+12
-12
lines changed

tests/Util/fixtures/add_many_to_many_relation/User_simple_inverse.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public function getId(): ?int
2828
}
2929

3030
/**
31-
* @return Collection|Recipe[]
31+
* @return Collection<int, Recipe>
3232
*/
3333
public function getRecipes(): Collection
3434
{

tests/Util/fixtures/add_many_to_many_relation/User_simple_no_inverse.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public function getId(): ?int
2828
}
2929

3030
/**
31-
* @return Collection|Recipe[]
31+
* @return Collection<int, Recipe>
3232
*/
3333
public function getRecipes(): Collection
3434
{

tests/Util/fixtures/add_many_to_many_relation/User_simple_owning.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public function getId(): ?int
2828
}
2929

3030
/**
31-
* @return Collection|Recipe[]
31+
* @return Collection<int, Recipe>
3232
*/
3333
public function getRecipes(): Collection
3434
{

tests/Util/fixtures/add_many_to_many_relation/legacy/User_simple_inverse.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public function getId(): ?int
3434
}
3535

3636
/**
37-
* @return Collection|Recipe[]
37+
* @return Collection<int, Recipe>
3838
*/
3939
public function getRecipes(): Collection
4040
{

tests/Util/fixtures/add_many_to_many_relation/legacy/User_simple_no_inverse.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public function getId(): ?int
3434
}
3535

3636
/**
37-
* @return Collection|Recipe[]
37+
* @return Collection<int, Recipe>
3838
*/
3939
public function getRecipes(): Collection
4040
{

tests/Util/fixtures/add_many_to_many_relation/legacy/User_simple_owning.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public function getId(): ?int
3434
}
3535

3636
/**
37-
* @return Collection|Recipe[]
37+
* @return Collection<int, Recipe>
3838
*/
3939
public function getRecipes(): Collection
4040
{

tests/Util/fixtures/add_one_to_many_relation/User_simple.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public function getId(): ?int
2828
}
2929

3030
/**
31-
* @return Collection|UserAvatarPhoto[]
31+
* @return Collection<int, UserAvatarPhoto>
3232
*/
3333
public function getAvatarPhotos(): Collection
3434
{

tests/Util/fixtures/add_one_to_many_relation/User_simple_orphan_removal.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public function getId(): ?int
2828
}
2929

3030
/**
31-
* @return Collection|UserAvatarPhoto[]
31+
* @return Collection<int, UserAvatarPhoto>
3232
*/
3333
public function getAvatarPhotos(): Collection
3434
{

tests/Util/fixtures/add_one_to_many_relation/User_with_use_statements.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public function getId(): ?int
3030
}
3131

3232
/**
33-
* @return Collection|UserAvatarPhoto[]
33+
* @return Collection<int, UserAvatarPhoto>
3434
*/
3535
public function getAvatarPhotos(): Collection
3636
{

tests/Util/fixtures/add_one_to_many_relation/legacy/User_simple.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public function getId(): ?int
3434
}
3535

3636
/**
37-
* @return Collection|UserAvatarPhoto[]
37+
* @return Collection<int, UserAvatarPhoto>
3838
*/
3939
public function getAvatarPhotos(): Collection
4040
{

tests/Util/fixtures/add_one_to_many_relation/legacy/User_simple_orphan_removal.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public function getId(): ?int
3434
}
3535

3636
/**
37-
* @return Collection|UserAvatarPhoto[]
37+
* @return Collection<int, UserAvatarPhoto>
3838
*/
3939
public function getAvatarPhotos(): Collection
4040
{

tests/Util/fixtures/add_one_to_many_relation/legacy/User_with_use_statements.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public function getId(): ?int
3636
}
3737

3838
/**
39-
* @return Collection|UserAvatarPhoto[]
39+
* @return Collection<int, UserAvatarPhoto>
4040
*/
4141
public function getAvatarPhotos(): Collection
4242
{

0 commit comments

Comments
 (0)