We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 533b7c3 commit c4d6258Copy full SHA for c4d6258
src/types/recipe/RecipeUnlockingRequirement.php
@@ -21,13 +21,15 @@ final class RecipeUnlockingRequirement{
21
22
/**
23
* @param RecipeIngredient[]|null $unlockingIngredients
24
+ * @phpstan-param list<RecipeIngredient>|null $unlockingIngredients
25
*/
26
public function __construct(
27
private ?array $unlockingIngredients
28
){}
29
30
31
* @return RecipeIngredient[]|null
32
+ * @phpstan-return list<RecipeIngredient>|null
33
34
public function getUnlockingIngredients() : ?array{ return $this->unlockingIngredients; }
35
0 commit comments