()
| 1607 | class ParamOverrideDemo |
| 1608 | { |
| 1609 | public function demo(): void |
| 1610 | { |
| 1611 | foreach ($this->ingredients as $ingredient) { |
| 1612 | $ingredient->name; // Ingredient::$name |
| 1613 | $ingredient->format(); // Ingredient::format() |
| 1614 | } |
| 1615 | $this->recipe->name; // Recipe::$name |
| 1616 | } |
| 1617 | |
| 1618 | /** |
| 1619 | * @param list<Ingredient> $ingredients |