We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e9368d4 commit 98ff720Copy full SHA for 98ff720
2 files changed
src/Core/ServiceFactory/Command/CommandsFactory.php
@@ -29,7 +29,7 @@
29
final class CommandsFactory
30
{
31
/**
32
- * @return array<int, Command>
+ * @return list<Command>
33
*/
34
public function __invoke(ContainerInterface $container): array
35
src/Pet/Model/Pet.php
@@ -74,7 +74,7 @@ public function getTag(): ?string
74
}
75
76
77
- * @param array<int, Vaccination> $vaccinations
+ * @param list<Vaccination> $vaccinations
78
79
public function setVaccinations(array $vaccinations): void
80
@@ -90,7 +90,7 @@ public function setVaccinations(array $vaccinations): void
90
91
92
93
- * @return array<int, Vaccination>
+ * @return list<Vaccination>
94
95
public function getVaccinations(): array
96
0 commit comments