1: <?php
2:
3:
4: namespace BeerXML\Parser;
5:
6:
7: interface IYeastDisplay extends IYeast {
8:
9: /**
10: * Date sample was last cultured in a neutral date form such as "10 Dec 04"
11: *
12: * @param \DateTime $cultureDate
13: */
14: public function setCultureDate($cultureDate);
15:
16: /**
17: * Maximum fermentation temperature converted to current user units along with the units. For example "54.0 F" or
18: * "24.2 C"
19: *
20: * @param string $dispMaxTemp
21: */
22: public function setDispMaxTemp($dispMaxTemp);
23:
24: /**
25: * Minimum fermentation temperature converted to current user units along with the units. For example "54.0 F" or
26: * "24.2 C"
27: *
28: * @param string $dispMinTemp
29: */
30: public function setDispMinTemp($dispMinTemp);
31:
32: /**
33: * The amount of yeast or starter in this record along with the units formatted for easy display in the current user
34: * defined units. For example "1.5 oz" or "100 g".
35: *
36: * @param string $displayAmount
37: */
38: public function setDisplayAmount($displayAmount);
39:
40: /**
41: * Amount in inventory for this hop along with the units – for example "10.0 pkgs"
42: *
43: * @param string $inventory
44: */
45: public function setInventory($inventory);
46: }