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 IStyle
  8: {
  9: 
 10:     /**
 11:      * @param float $abvMax
 12:      */
 13:     public function setAbvMax($abvMax);
 14: 
 15:     /**
 16:      * @param float $abvMin
 17:      */
 18:     public function setAbvMin($abvMin);
 19: 
 20:     /**
 21:      * @param float $carbMax
 22:      */
 23:     public function setCarbMax($carbMax);
 24: 
 25:     /**
 26:      * @param float $carbMin
 27:      */
 28:     public function setCarbMin($carbMin);
 29: 
 30:     /**
 31:      * @param string $category
 32:      */
 33:     public function setCategory($category);
 34: 
 35:     /**
 36:      * @param string $categoryNumber
 37:      */
 38:     public function setCategoryNumber($categoryNumber);
 39: 
 40:     /**
 41:      * @param number $colorMax
 42:      */
 43:     public function setColorMax($colorMax);
 44: 
 45:     /**
 46:      * @param number $colorMin
 47:      */
 48:     public function setColorMin($colorMin);
 49: 
 50:     /**
 51:      * @param string $examples
 52:      */
 53:     public function setExamples($examples);
 54: 
 55:     /**
 56:      * @param float $fgMax
 57:      */
 58:     public function setFgMax($fgMax);
 59: 
 60:     /**
 61:      * @param float $fgMin
 62:      */
 63:     public function setFgMin($fgMin);
 64: 
 65:     /**
 66:      * @param float $ibuMax
 67:      */
 68:     public function setIbuMax($ibuMax);
 69: 
 70:     /**
 71:      * @param float $ibuMin
 72:      */
 73:     public function setIbuMin($ibuMin);
 74: 
 75:     /**
 76:      * @param string $ingredients
 77:      */
 78:     public function setIngredients($ingredients);
 79: 
 80:     /**
 81:      * @param string $name
 82:      */
 83:     public function setName($name);
 84: 
 85:     /**
 86:      * @param string $notes
 87:      */
 88:     public function setNotes($notes);
 89: 
 90:     /**
 91:      * @param float $ogMax
 92:      */
 93:     public function setOgMax($ogMax);
 94: 
 95:     /**
 96:      * @param float $ogMin
 97:      */
 98:     public function setOgMin($ogMin);
 99: 
100:     /**
101:      * @param string $profile
102:      */
103:     public function setProfile($profile);
104: 
105:     /**
106:      * @param string $styleGuide
107:      */
108:     public function setStyleGuide($styleGuide);
109: 
110:     /**
111:      * @param string $styleLetter
112:      */
113:     public function setStyleLetter($styleLetter);
114: 
115:     /**
116:      * @param string $type
117:      */
118:     public function setType($type);
119: 
120:     /**
121:      * @param int $version
122:      */
123:     public function setVersion($version);
124: }
php-beerxml API documentation generated by ApiGen 2.8.0