| 1 | <?php |
||
| 10 | class CookAction extends CreateAction |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * A sub property of location. The specific food establishment where the |
||
| 14 | * action occurred. |
||
| 15 | * |
||
| 16 | * @param \Spatie\SchemaOrg\FoodEstablishment|\Spatie\SchemaOrg\Place $foodEstablishment |
||
| 17 | * |
||
| 18 | * @return static |
||
| 19 | * |
||
| 20 | * @see http://schema.org/foodEstablishment |
||
| 21 | */ |
||
| 22 | public function foodEstablishment($foodEstablishment) |
||
| 26 | |||
| 27 | /** |
||
| 28 | * A sub property of location. The specific food event where the action |
||
| 29 | * occurred. |
||
| 30 | * |
||
| 31 | * @param \Spatie\SchemaOrg\FoodEvent $foodEvent |
||
| 32 | * |
||
| 33 | * @return static |
||
| 34 | * |
||
| 35 | * @see http://schema.org/foodEvent |
||
| 36 | */ |
||
| 37 | public function foodEvent($foodEvent) |
||
| 41 | |||
| 42 | /** |
||
| 43 | * A sub property of instrument. The recipe/instructions used to perform the |
||
| 44 | * action. |
||
| 45 | * |
||
| 46 | * @param \Spatie\SchemaOrg\Recipe $recipe |
||
| 47 | * |
||
| 48 | * @return static |
||
| 49 | * |
||
| 50 | * @see http://schema.org/recipe |
||
| 51 | */ |
||
| 52 | public function recipe($recipe) |
||
| 56 | |||
| 57 | } |
||
| 58 |