Overview

Namespaces

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

Classes

  • Equipment
  • Fermentable
  • Hop
  • MashProfile
  • MashStep
  • Misc
  • Recipe
  • Record
  • RecordFactory
  • 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\Parser;
 5: 
 6: 
 7: interface IMashProfile
 8: {
 9: 
10:     /**
11:      * @param boolean $equipAdjust
12:      */
13:     public function setEquipAdjust($equipAdjust);
14: 
15:     /**
16:      * @param number $grainTemp
17:      */
18:     public function setGrainTemp($grainTemp);
19: 
20:     /**
21:      * @param MashStep $mashStep
22:      */
23:     public function addMashStep($mashStep);
24: 
25:     /**
26:      * @param string $name
27:      */
28:     public function setName($name);
29: 
30:     /**
31:      * @param string $notes
32:      */
33:     public function setNotes($notes);
34: 
35:     /**
36:      * @param float $pH
37:      */
38:     public function setPH($pH);
39: 
40:     /**
41:      * @param number $spargeTemp
42:      */
43:     public function setSpargeTemp($spargeTemp);
44: 
45:     /**
46:      * @param float $tunSpecificHeat
47:      */
48:     public function setTunSpecificHeat($tunSpecificHeat);
49: 
50:     /**
51:      * @param number $tunTemp
52:      */
53:     public function setTunTemp($tunTemp);
54: 
55:     /**
56:      * @param float $tunWeight
57:      */
58:     public function setTunWeight($tunWeight);
59: 
60:     /**
61:      * @param int $version
62:      */
63:     public function setVersion($version);
64: }
php-beerxml API documentation generated by ApiGen 2.8.0