1: <?php
2:
3:
4: namespace BeerXML\Generator;
5:
6:
7: interface IWaterDisplay extends IWater
8: {
9:
10: /**
11: * The amount of water in this record along with the units formatted for easy display in the current user defined
12: * units. For example "5.0 gal" or "20.0 l".
13: *
14: * @return string
15: */
16: public function getDisplayAmount();
17: }