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