1: <?php
2:
3:
4: namespace BeerXML\Generator;
5:
6:
7: interface IHopDisplay extends IHop
8: {
9:
10: /**
11: * The amount of hops in this record along with the units formatted for easy display in the current user defined
12: * units. For example "100 g" or "1.5 oz".
13: *
14: * @return string
15: */
16: public function getDisplayAmount();
17:
18: /**
19: * Time displayed in minutes for all uses except for the dry hop which is in days. For example "60 min", "3 days".
20: *
21: * @return string
22: */
23: public function getDisplayTime();
24:
25: /**
26: * Amount in inventory for this item along with the units – for example "10.0 oz"
27: *
28: * @return string
29: */
30: public function getInventory();
31: }