Overview

Namespaces

  • BeerXML
    • Exception
    • Generator
    • Parser
    • Record
  • PHP

Classes

  • Equipment
  • Fermentable
  • Hop
  • MashProfile
  • MashStep
  • Misc
  • Recipe
  • Record
  • Style
  • Water
  • Yeast

Interfaces

  • IEquipment
  • IEquipmentDisplay
  • IFermentable
  • IFermentableDisplay
  • IHop
  • IHopDisplay
  • IMashProfile
  • IMashProfileDisplay
  • IMashStep
  • IMashStepDisplay
  • IMisc
  • IMiscDisplay
  • IRecipe
  • IRecipeDisplay
  • IStyle
  • IStyleDisplay
  • IWater
  • IWaterDisplay
  • IYeast
  • IYeastDisplay
  • Overview
  • Namespace
  • Class
  • Tree
 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: }
php-beerxml API documentation generated by ApiGen 2.8.0