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