1: <?php
2:
3:
4: namespace BeerXML\Generator;
5:
6:
7: interface IMashProfileDisplay extends IMashProfile
8: {
9:
10: /**
11: * Grain temperature in user display units with the units. For example: "72 F".
12: *
13: * @return string
14: */
15: public function getDisplayGrainTemp();
16:
17: /**
18: * Sparge temperature in user defined units. For example "178 F"
19: *
20: * @return string
21: */
22: public function getDisplaySpargeTemp();
23:
24: /**
25: * Tun temperature in user display units. For example "68 F"
26: *
27: * @return string
28: */
29: public function getDisplayTunTemp();
30:
31: /**
32: * Tun weight in user defined units – for example "10 lb"
33: *
34: * @return string
35: */
36: public function getDisplayTunWeight();
37: }