src/Entity/Recipes.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * Recipes
  6.  *
  7.  * @ORM\Table(name="recipes", indexes={@ORM\Index(name="recipe_name", columns={"recipe_name"}), @ORM\Index(name="active", columns={"active"})})
  8.  * @ORM\Entity(repositoryClass="App\Repository\RecipesRepository")
  9.  */
  10. class Recipes
  11. {
  12.     /**
  13.      * @var int
  14.      *
  15.      * @ORM\Column(name="id", type="integer" ,options={"unsigned"=true})
  16.      * @ORM\Id
  17.      * @ORM\GeneratedValue(strategy="AUTO")
  18.      */
  19.     private $id;
  20.     /**
  21.      * @var string
  22.      *
  23.      * @ORM\Column(name="recipe_name", type="string", length=255)
  24.      */
  25.     private $recipeName;
  26.     /**
  27.      * @var string
  28.      *
  29.      * @ORM\Column(name="recipe_name_en", type="string", length=255)
  30.      */
  31.     private $recipeNameEn;
  32.     /**
  33.      * @var string
  34.      *
  35.      * @ORM\Column(name="recipe_description", type="text", nullable=true)
  36.      */
  37.     private $recipeDescription;
  38.     /**
  39.      * @var string
  40.      *
  41.      * @ORM\Column(name="recipe_description_en", type="text", nullable=true)
  42.      */
  43.     private $recipeDescriptionEn;
  44.     /**
  45.      * @var float
  46.      *
  47.      * @ORM\Column(name="calories", type="float", nullable=true, options={"unsigned"=true})
  48.      */
  49.     private $calories;
  50.     /**
  51.      * @var float
  52.      *
  53.      * @ORM\Column(name="proteins", type="float", nullable=true, options={"unsigned"=true})
  54.      */
  55.     private $proteins;
  56.     /**
  57.      * @var float
  58.      *
  59.      * @ORM\Column(name="fats", type="float", nullable=true, options={"unsigned"=true})
  60.      */
  61.     private $fats;
  62.     /**
  63.      * @var float
  64.      *
  65.      * @ORM\Column(name="sugar", type="float", nullable=true, options={"unsigned"=true})
  66.      */
  67.     private $sugar;
  68.     /**
  69.      * @var bool
  70.      *
  71.      * @ORM\Column(name="active", type="boolean", options={"default" : true})
  72.      */
  73.     private $active;
  74.     /**
  75.      * @var bool
  76.      *
  77.      * @ORM\Column(name="removed", type="boolean", options={"default" : false})
  78.      */
  79.     private $removed;
  80.     /**
  81.      * @ORM\Column(type="decimal", precision=10, scale=3)
  82.      */
  83.     private $energy;
  84.     /**
  85.      * @ORM\Column(type="decimal", precision=10, scale=3)
  86.      */
  87.     private $carbohydrate;
  88.     /**
  89.      * @ORM\Column(type="decimal", precision=10, scale=3)
  90.      */
  91.     private $fiber_total_dietary;
  92.     /**
  93.      * @ORM\Column(type="decimal", precision=10, scale=3)
  94.      */
  95.     private $total_fat;
  96.     /**
  97.      * @ORM\Column(type="decimal", precision=10, scale=3)
  98.      */
  99.     private $fatty_acids_total_saturated;
  100.     /**
  101.      * @ORM\Column(type="decimal", precision=10, scale=3)
  102.      */
  103.     private $fatty_acids_total_monosaturated;
  104.     /**
  105.      * @ORM\Column(type="decimal", precision=10, scale=3)
  106.      */
  107.     private $fatty_acids_total_polyunsaturated;
  108.     /**
  109.      * @ORM\Column(type="decimal", precision=10, scale=3)
  110.      */
  111.     private $cholesterol;
  112.     /**
  113.      * @ORM\Column(type="decimal", precision=10, scale=3)
  114.      */
  115.     private $retinol;
  116.     /**
  117.      * @ORM\Column(type="decimal", precision=10, scale=3)
  118.      */
  119.     private $vitamin_a;
  120.     /**
  121.      * @ORM\Column(type="decimal", precision=10, scale=3)
  122.      */
  123.     private $carotene_alpha;
  124.     /**
  125.      * @ORM\Column(type="decimal", precision=10, scale=3)
  126.      */
  127.     private $carotene_beta;
  128.     /**
  129.      * @ORM\Column(type="decimal", precision=10, scale=3)
  130.      */
  131.     private $cryptoxanthin_beta;
  132.     /**
  133.      * @ORM\Column(type="decimal", precision=10, scale=3)
  134.      */
  135.     private $lycopene;
  136.     /**
  137.      * @ORM\Column(type="decimal", precision=10, scale=3)
  138.      */
  139.     private $lutein_zeaxanthin;
  140.     /**
  141.      * @ORM\Column(type="decimal", precision=10, scale=3)
  142.      */
  143.     private $thiamin;
  144.     /**
  145.      * @ORM\Column(type="decimal", precision=10, scale=3)
  146.      */
  147.     private $riboflavin;
  148.     /**
  149.      * @ORM\Column(type="decimal", precision=10, scale=3)
  150.      */
  151.     private $niacin;
  152.     /**
  153.      * @ORM\Column(type="decimal", precision=10, scale=3)
  154.      */
  155.     private $vitamin_b6;
  156.     /**
  157.      * @ORM\Column(type="decimal", precision=10, scale=3)
  158.      */
  159.     private $folic_acid;
  160.     /**
  161.      * @ORM\Column(type="decimal", precision=10, scale=3)
  162.      */
  163.     private $folate_food;
  164.     /**
  165.      * @ORM\Column(type="decimal", precision=10, scale=3)
  166.      */
  167.     private $folate_dfe;
  168.     /**
  169.      * @ORM\Column(type="decimal", precision=10, scale=3)
  170.      */
  171.     private $folate_total;
  172.     /**
  173.      * @ORM\Column(type="decimal", precision=10, scale=3)
  174.      */
  175.     private $choline_total;
  176.     /**
  177.      * @ORM\Column(type="decimal", precision=10, scale=3)
  178.      */
  179.     private $vitamin_b12;
  180.     /**
  181.      * @ORM\Column(type="decimal", precision=10, scale=3)
  182.      */
  183.     private $vitamin_b12_added;
  184.     /**
  185.      * @ORM\Column(type="decimal", precision=10, scale=3)
  186.      */
  187.     private $vitamin_c;
  188.     /**
  189.      * @ORM\Column(type="decimal", precision=10, scale=3)
  190.      */
  191.     private $vitamin_d_d2_d3;
  192.     /**
  193.      * @ORM\Column(type="decimal", precision=10, scale=3)
  194.      */
  195.     private $vitamin_e_alpha_tocopherol;
  196.     /**
  197.      * @ORM\Column(type="decimal", precision=10, scale=3)
  198.      */
  199.     private $vitamin_e_added;
  200.     /**
  201.      * @ORM\Column(type="decimal", precision=10, scale=3)
  202.      */
  203.     private $vitamin_k_phylloquinone;
  204.     /**
  205.      * @ORM\Column(type="decimal", precision=10, scale=3)
  206.      */
  207.     private $calcium;
  208.     /**
  209.      * @ORM\Column(type="decimal", precision=10, scale=3)
  210.      */
  211.     private $phosphorus;
  212.     /**
  213.      * @ORM\Column(type="decimal", precision=10, scale=3)
  214.      */
  215.     private $magnesium;
  216.     /**
  217.      * @ORM\Column(type="decimal", precision=10, scale=3)
  218.      */
  219.     private $iron;
  220.     /**
  221.      * @ORM\Column(type="decimal", precision=10, scale=3)
  222.      */
  223.     private $zinc;
  224.     /**
  225.      * @ORM\Column(type="decimal", precision=10, scale=3)
  226.      */
  227.     private $copper;
  228.     /**
  229.      * @ORM\Column(type="decimal", precision=10, scale=3)
  230.      */
  231.     private $selenium;
  232.     /**
  233.      * @ORM\Column(type="decimal", precision=10, scale=3)
  234.      */
  235.     private $potassium;
  236.     /**
  237.      * @ORM\Column(type="decimal", precision=10, scale=3)
  238.      */
  239.     private $sodium;
  240.     /**
  241.      * @ORM\Column(type="decimal", precision=10, scale=3)
  242.      */
  243.     private $caffeine;
  244.     /**
  245.      * @ORM\Column(type="decimal", precision=10, scale=3)
  246.      */
  247.     private $theobromine;
  248.     /**
  249.      * @ORM\Column(type="decimal", precision=10, scale=3)
  250.      */
  251.     private $alcohol;
  252.     /**
  253.      * @ORM\Column(type="decimal", precision=10, scale=3)
  254.      */
  255.     private $water;
  256.     /**
  257.      * @ORM\Column(type="decimal", precision=10, scale=3)
  258.      */
  259.     private $protein;
  260.     /**
  261.      * @ORM\Column(type="decimal", precision=10, scale=3)
  262.      */
  263.     private $sugars_total;
  264.     /**
  265.      * @ORM\Column(type="decimal", precision=10, scale=3)
  266.      */
  267.     private $healthy_minutes;
  268.     /**
  269.      * Get id
  270.      *
  271.      * @return int
  272.      */
  273.     public function getId()
  274.     {
  275.         return $this->id;
  276.     }
  277.     /**
  278.      * Set recipeName
  279.      *
  280.      * @param string $recipeName
  281.      *
  282.      * @return Recipes
  283.      */
  284.     public function setRecipeName($recipeName)
  285.     {
  286.         $this->recipeName $recipeName;
  287.         return $this;
  288.     }
  289.     /**
  290.      * Get recipeName
  291.      *
  292.      * @return string
  293.      */
  294.     public function getRecipeName()
  295.     {
  296.         return $this->recipeName;
  297.     }
  298.     /**
  299.      * @return string
  300.      */
  301.     public function getRecipeNameEn()
  302.     {
  303.         return $this->recipeNameEn;
  304.     }
  305.     /**
  306.      * @param string $recipeNameEn
  307.      */
  308.     public function setRecipeNameEn($recipeNameEn)
  309.     {
  310.         $this->recipeNameEn $recipeNameEn;
  311.     }
  312.     /**
  313.      * Set recipeDescription
  314.      *
  315.      * @param string $recipeDescription
  316.      *
  317.      * @return Recipes
  318.      */
  319.     public function setRecipeDescription($recipeDescription)
  320.     {
  321.         $this->recipeDescription $recipeDescription;
  322.         return $this;
  323.     }
  324.     /**
  325.      * Get recipeDescription
  326.      *
  327.      * @return string
  328.      */
  329.     public function getRecipeDescription()
  330.     {
  331.         return $this->recipeDescription;
  332.     }
  333.     /**
  334.      * @return string
  335.      */
  336.     public function getRecipeDescriptionEn()
  337.     {
  338.         return $this->recipeDescriptionEn;
  339.     }
  340.     /**
  341.      * @param string $recipeDescriptionEn
  342.      */
  343.     public function setRecipeDescriptionEn($recipeDescriptionEn)
  344.     {
  345.         $this->recipeDescriptionEn $recipeDescriptionEn;
  346.     }
  347.     /**
  348.      * Set calories
  349.      *
  350.      * @param float $calories
  351.      *
  352.      * @return Recipes
  353.      */
  354.     public function setCalories($calories)
  355.     {
  356.         $this->calories $calories;
  357.         return $this;
  358.     }
  359.     /**
  360.      * Get calories
  361.      *
  362.      * @return float
  363.      */
  364.     public function getCalories()
  365.     {
  366.         return $this->calories;
  367.     }
  368.     /**
  369.      * Set proteins
  370.      *
  371.      * @param float $proteins
  372.      *
  373.      * @return Recipes
  374.      */
  375.     public function setProteins($proteins)
  376.     {
  377.         $this->proteins $proteins;
  378.         return $this;
  379.     }
  380.     /**
  381.      * Get proteins
  382.      *
  383.      * @return float
  384.      */
  385.     public function getProteins()
  386.     {
  387.         return $this->proteins;
  388.     }
  389.     /**
  390.      * Set fats
  391.      *
  392.      * @param float $fats
  393.      *
  394.      * @return Recipes
  395.      */
  396.     public function setFats($fats)
  397.     {
  398.         $this->fats $fats;
  399.         return $this;
  400.     }
  401.     /**
  402.      * Get fats
  403.      *
  404.      * @return float
  405.      */
  406.     public function getFats()
  407.     {
  408.         return $this->fats;
  409.     }
  410.     /**
  411.      * Set sugar
  412.      *
  413.      * @param float $sugar
  414.      *
  415.      * @return Recipes
  416.      */
  417.     public function setSugar($sugar)
  418.     {
  419.         $this->sugar $sugar;
  420.         return $this;
  421.     }
  422.     /**
  423.      * Get sugar
  424.      *
  425.      * @return float
  426.      */
  427.     public function getSugar()
  428.     {
  429.         return $this->sugar;
  430.     }
  431.     /**
  432.      * Set active
  433.      *
  434.      * @param boolean $active
  435.      *
  436.      * @return Recipes
  437.      */
  438.     public function setActive($active)
  439.     {
  440.         $this->active $active;
  441.         return $this;
  442.     }
  443.     /**
  444.      * Get active
  445.      *
  446.      * @return bool
  447.      */
  448.     public function getActive()
  449.     {
  450.         return $this->active;
  451.     }
  452.     /**
  453.      * @return bool
  454.      */
  455.     public function isRemoved()
  456.     {
  457.         return $this->removed;
  458.     }
  459.     /**
  460.      * @param bool $removed
  461.      */
  462.     public function setRemoved($removed)
  463.     {
  464.         $this->removed $removed;
  465.     }
  466.     /**
  467.      * @return mixed
  468.      */
  469.     public function getEnergy()
  470.     {
  471.         return $this->energy;
  472.     }
  473.     /**
  474.      * @param mixed $energy
  475.      */
  476.     public function setEnergy($energy): void
  477.     {
  478.         $this->energy $energy;
  479.     }
  480.     /**
  481.      * @return mixed
  482.      */
  483.     public function getCarbohydrate()
  484.     {
  485.         return $this->carbohydrate;
  486.     }
  487.     /**
  488.      * @param mixed $carbohydrate
  489.      */
  490.     public function setCarbohydrate($carbohydrate): void
  491.     {
  492.         $this->carbohydrate $carbohydrate;
  493.     }
  494.     /**
  495.      * @return mixed
  496.      */
  497.     public function getFiberTotalDietary()
  498.     {
  499.         return $this->fiber_total_dietary;
  500.     }
  501.     /**
  502.      * @param mixed $fiber_total_dietary
  503.      */
  504.     public function setFiberTotalDietary($fiber_total_dietary): void
  505.     {
  506.         $this->fiber_total_dietary $fiber_total_dietary;
  507.     }
  508.     /**
  509.      * @return mixed
  510.      */
  511.     public function getTotalFat()
  512.     {
  513.         return $this->total_fat;
  514.     }
  515.     /**
  516.      * @param mixed $total_fat
  517.      */
  518.     public function setTotalFat($total_fat): void
  519.     {
  520.         $this->total_fat $total_fat;
  521.     }
  522.     /**
  523.      * @return mixed
  524.      */
  525.     public function getFattyAcidsTotalSaturated()
  526.     {
  527.         return $this->fatty_acids_total_saturated;
  528.     }
  529.     /**
  530.      * @param mixed $fatty_acids_total_saturated
  531.      */
  532.     public function setFattyAcidsTotalSaturated($fatty_acids_total_saturated): void
  533.     {
  534.         $this->fatty_acids_total_saturated $fatty_acids_total_saturated;
  535.     }
  536.     /**
  537.      * @return mixed
  538.      */
  539.     public function getFattyAcidsTotalMonosaturated()
  540.     {
  541.         return $this->fatty_acids_total_monosaturated;
  542.     }
  543.     /**
  544.      * @param mixed $fatty_acids_total_monosaturated
  545.      */
  546.     public function setFattyAcidsTotalMonosaturated($fatty_acids_total_monosaturated): void
  547.     {
  548.         $this->fatty_acids_total_monosaturated $fatty_acids_total_monosaturated;
  549.     }
  550.     /**
  551.      * @return mixed
  552.      */
  553.     public function getFattyAcidsTotalPolyunsaturated()
  554.     {
  555.         return $this->fatty_acids_total_polyunsaturated;
  556.     }
  557.     /**
  558.      * @param mixed $fatty_acids_total_polyunsaturated
  559.      */
  560.     public function setFattyAcidsTotalPolyunsaturated($fatty_acids_total_polyunsaturated): void
  561.     {
  562.         $this->fatty_acids_total_polyunsaturated $fatty_acids_total_polyunsaturated;
  563.     }
  564.     /**
  565.      * @return mixed
  566.      */
  567.     public function getCholesterol()
  568.     {
  569.         return $this->cholesterol;
  570.     }
  571.     /**
  572.      * @param mixed $cholesterol
  573.      */
  574.     public function setCholesterol($cholesterol): void
  575.     {
  576.         $this->cholesterol $cholesterol;
  577.     }
  578.     /**
  579.      * @return mixed
  580.      */
  581.     public function getRetinol()
  582.     {
  583.         return $this->retinol;
  584.     }
  585.     /**
  586.      * @param mixed $retinol
  587.      */
  588.     public function setRetinol($retinol): void
  589.     {
  590.         $this->retinol $retinol;
  591.     }
  592.     /**
  593.      * @return mixed
  594.      */
  595.     public function getVitaminA()
  596.     {
  597.         return $this->vitamin_a;
  598.     }
  599.     /**
  600.      * @param mixed $vitamin_a
  601.      */
  602.     public function setVitaminA($vitamin_a): void
  603.     {
  604.         $this->vitamin_a $vitamin_a;
  605.     }
  606.     /**
  607.      * @return mixed
  608.      */
  609.     public function getCaroteneAlpha()
  610.     {
  611.         return $this->carotene_alpha;
  612.     }
  613.     /**
  614.      * @param mixed $carotene_alpha
  615.      */
  616.     public function setCaroteneAlpha($carotene_alpha): void
  617.     {
  618.         $this->carotene_alpha $carotene_alpha;
  619.     }
  620.     /**
  621.      * @return mixed
  622.      */
  623.     public function getCaroteneBeta()
  624.     {
  625.         return $this->carotene_beta;
  626.     }
  627.     /**
  628.      * @param mixed $carotene_beta
  629.      */
  630.     public function setCaroteneBeta($carotene_beta): void
  631.     {
  632.         $this->carotene_beta $carotene_beta;
  633.     }
  634.     /**
  635.      * @return mixed
  636.      */
  637.     public function getCryptoxanthinBeta()
  638.     {
  639.         return $this->cryptoxanthin_beta;
  640.     }
  641.     /**
  642.      * @param mixed $cryptoxanthin_beta
  643.      */
  644.     public function setCryptoxanthinBeta($cryptoxanthin_beta): void
  645.     {
  646.         $this->cryptoxanthin_beta $cryptoxanthin_beta;
  647.     }
  648.     /**
  649.      * @return mixed
  650.      */
  651.     public function getLycopene()
  652.     {
  653.         return $this->lycopene;
  654.     }
  655.     /**
  656.      * @param mixed $lycopene
  657.      */
  658.     public function setLycopene($lycopene): void
  659.     {
  660.         $this->lycopene $lycopene;
  661.     }
  662.     /**
  663.      * @return mixed
  664.      */
  665.     public function getLuteinZeaxanthin()
  666.     {
  667.         return $this->lutein_zeaxanthin;
  668.     }
  669.     /**
  670.      * @param mixed $lutein_zeaxanthin
  671.      */
  672.     public function setLuteinZeaxanthin($lutein_zeaxanthin): void
  673.     {
  674.         $this->lutein_zeaxanthin $lutein_zeaxanthin;
  675.     }
  676.     /**
  677.      * @return mixed
  678.      */
  679.     public function getThiamin()
  680.     {
  681.         return $this->thiamin;
  682.     }
  683.     /**
  684.      * @param mixed $thiamin
  685.      */
  686.     public function setThiamin($thiamin): void
  687.     {
  688.         $this->thiamin $thiamin;
  689.     }
  690.     /**
  691.      * @return mixed
  692.      */
  693.     public function getRiboflavin()
  694.     {
  695.         return $this->riboflavin;
  696.     }
  697.     /**
  698.      * @param mixed $riboflavin
  699.      */
  700.     public function setRiboflavin($riboflavin): void
  701.     {
  702.         $this->riboflavin $riboflavin;
  703.     }
  704.     /**
  705.      * @return mixed
  706.      */
  707.     public function getNiacin()
  708.     {
  709.         return $this->niacin;
  710.     }
  711.     /**
  712.      * @param mixed $niacin
  713.      */
  714.     public function setNiacin($niacin): void
  715.     {
  716.         $this->niacin $niacin;
  717.     }
  718.     /**
  719.      * @return mixed
  720.      */
  721.     public function getVitaminB6()
  722.     {
  723.         return $this->vitamin_b6;
  724.     }
  725.     /**
  726.      * @param mixed $vitamin_b6
  727.      */
  728.     public function setVitaminB6($vitamin_b6): void
  729.     {
  730.         $this->vitamin_b6 $vitamin_b6;
  731.     }
  732.     /**
  733.      * @return mixed
  734.      */
  735.     public function getFolicAcid()
  736.     {
  737.         return $this->folic_acid;
  738.     }
  739.     /**
  740.      * @param mixed $folic_acid
  741.      */
  742.     public function setFolicAcid($folic_acid): void
  743.     {
  744.         $this->folic_acid $folic_acid;
  745.     }
  746.     /**
  747.      * @return mixed
  748.      */
  749.     public function getFolateFood()
  750.     {
  751.         return $this->folate_food;
  752.     }
  753.     /**
  754.      * @param mixed $folate_food
  755.      */
  756.     public function setFolateFood($folate_food): void
  757.     {
  758.         $this->folate_food $folate_food;
  759.     }
  760.     /**
  761.      * @return mixed
  762.      */
  763.     public function getFolateDfe()
  764.     {
  765.         return $this->folate_dfe;
  766.     }
  767.     /**
  768.      * @param mixed $folate_dfe
  769.      */
  770.     public function setFolateDfe($folate_dfe): void
  771.     {
  772.         $this->folate_dfe $folate_dfe;
  773.     }
  774.     /**
  775.      * @return mixed
  776.      */
  777.     public function getFolateTotal()
  778.     {
  779.         return $this->folate_total;
  780.     }
  781.     /**
  782.      * @param mixed $folate_total
  783.      */
  784.     public function setFolateTotal($folate_total): void
  785.     {
  786.         $this->folate_total $folate_total;
  787.     }
  788.     /**
  789.      * @return mixed
  790.      */
  791.     public function getCholineTotal()
  792.     {
  793.         return $this->choline_total;
  794.     }
  795.     /**
  796.      * @param mixed $choline_total
  797.      */
  798.     public function setCholineTotal($choline_total): void
  799.     {
  800.         $this->choline_total $choline_total;
  801.     }
  802.     /**
  803.      * @return mixed
  804.      */
  805.     public function getVitaminB12()
  806.     {
  807.         return $this->vitamin_b12;
  808.     }
  809.     /**
  810.      * @param mixed $vitamin_b12
  811.      */
  812.     public function setVitaminB12($vitamin_b12): void
  813.     {
  814.         $this->vitamin_b12 $vitamin_b12;
  815.     }
  816.     /**
  817.      * @return mixed
  818.      */
  819.     public function getVitaminB12Added()
  820.     {
  821.         return $this->vitamin_b12_added;
  822.     }
  823.     /**
  824.      * @param mixed $vitamin_b12_added
  825.      */
  826.     public function setVitaminB12Added($vitamin_b12_added): void
  827.     {
  828.         $this->vitamin_b12_added $vitamin_b12_added;
  829.     }
  830.     /**
  831.      * @return mixed
  832.      */
  833.     public function getVitaminC()
  834.     {
  835.         return $this->vitamin_c;
  836.     }
  837.     /**
  838.      * @param mixed $vitamin_c
  839.      */
  840.     public function setVitaminC($vitamin_c): void
  841.     {
  842.         $this->vitamin_c $vitamin_c;
  843.     }
  844.     /**
  845.      * @return mixed
  846.      */
  847.     public function getVitaminDD2D3()
  848.     {
  849.         return $this->vitamin_d_d2_d3;
  850.     }
  851.     /**
  852.      * @param mixed $vitamin_d_d2_d3
  853.      */
  854.     public function setVitaminDD2D3($vitamin_d_d2_d3): void
  855.     {
  856.         $this->vitamin_d_d2_d3 $vitamin_d_d2_d3;
  857.     }
  858.     /**
  859.      * @return mixed
  860.      */
  861.     public function getVitaminEAlphaTocopherol()
  862.     {
  863.         return $this->vitamin_e_alpha_tocopherol;
  864.     }
  865.     /**
  866.      * @param mixed $vitamin_e_alpha_tocopherol
  867.      */
  868.     public function setVitaminEAlphaTocopherol($vitamin_e_alpha_tocopherol): void
  869.     {
  870.         $this->vitamin_e_alpha_tocopherol $vitamin_e_alpha_tocopherol;
  871.     }
  872.     /**
  873.      * @return mixed
  874.      */
  875.     public function getVitaminEAdded()
  876.     {
  877.         return $this->vitamin_e_added;
  878.     }
  879.     /**
  880.      * @param mixed $vitamin_e_added
  881.      */
  882.     public function setVitaminEAdded($vitamin_e_added): void
  883.     {
  884.         $this->vitamin_e_added $vitamin_e_added;
  885.     }
  886.     /**
  887.      * @return mixed
  888.      */
  889.     public function getVitaminKPhylloquinone()
  890.     {
  891.         return $this->vitamin_k_phylloquinone;
  892.     }
  893.     /**
  894.      * @param mixed $vitamin_k_phylloquinone
  895.      */
  896.     public function setVitaminKPhylloquinone($vitamin_k_phylloquinone): void
  897.     {
  898.         $this->vitamin_k_phylloquinone $vitamin_k_phylloquinone;
  899.     }
  900.     /**
  901.      * @return mixed
  902.      */
  903.     public function getCalcium()
  904.     {
  905.         return $this->calcium;
  906.     }
  907.     /**
  908.      * @param mixed $calcium
  909.      */
  910.     public function setCalcium($calcium): void
  911.     {
  912.         $this->calcium $calcium;
  913.     }
  914.     /**
  915.      * @return mixed
  916.      */
  917.     public function getPhosphorus()
  918.     {
  919.         return $this->phosphorus;
  920.     }
  921.     /**
  922.      * @param mixed $phosphorus
  923.      */
  924.     public function setPhosphorus($phosphorus): void
  925.     {
  926.         $this->phosphorus $phosphorus;
  927.     }
  928.     /**
  929.      * @return mixed
  930.      */
  931.     public function getMagnesium()
  932.     {
  933.         return $this->magnesium;
  934.     }
  935.     /**
  936.      * @param mixed $magnesium
  937.      */
  938.     public function setMagnesium($magnesium): void
  939.     {
  940.         $this->magnesium $magnesium;
  941.     }
  942.     /**
  943.      * @return mixed
  944.      */
  945.     public function getIron()
  946.     {
  947.         return $this->iron;
  948.     }
  949.     /**
  950.      * @param mixed $iron
  951.      */
  952.     public function setIron($iron): void
  953.     {
  954.         $this->iron $iron;
  955.     }
  956.     /**
  957.      * @return mixed
  958.      */
  959.     public function getZinc()
  960.     {
  961.         return $this->zinc;
  962.     }
  963.     /**
  964.      * @param mixed $zinc
  965.      */
  966.     public function setZinc($zinc): void
  967.     {
  968.         $this->zinc $zinc;
  969.     }
  970.     /**
  971.      * @return mixed
  972.      */
  973.     public function getCopper()
  974.     {
  975.         return $this->copper;
  976.     }
  977.     /**
  978.      * @param mixed $copper
  979.      */
  980.     public function setCopper($copper): void
  981.     {
  982.         $this->copper $copper;
  983.     }
  984.     /**
  985.      * @return mixed
  986.      */
  987.     public function getSelenium()
  988.     {
  989.         return $this->selenium;
  990.     }
  991.     /**
  992.      * @param mixed $selenium
  993.      */
  994.     public function setSelenium($selenium): void
  995.     {
  996.         $this->selenium $selenium;
  997.     }
  998.     /**
  999.      * @return mixed
  1000.      */
  1001.     public function getPotassium()
  1002.     {
  1003.         return $this->potassium;
  1004.     }
  1005.     /**
  1006.      * @param mixed $potassium
  1007.      */
  1008.     public function setPotassium($potassium): void
  1009.     {
  1010.         $this->potassium $potassium;
  1011.     }
  1012.     /**
  1013.      * @return mixed
  1014.      */
  1015.     public function getSodium()
  1016.     {
  1017.         return $this->sodium;
  1018.     }
  1019.     /**
  1020.      * @param mixed $sodium
  1021.      */
  1022.     public function setSodium($sodium): void
  1023.     {
  1024.         $this->sodium $sodium;
  1025.     }
  1026.     /**
  1027.      * @return mixed
  1028.      */
  1029.     public function getCaffeine()
  1030.     {
  1031.         return $this->caffeine;
  1032.     }
  1033.     /**
  1034.      * @param mixed $caffeine
  1035.      */
  1036.     public function setCaffeine($caffeine): void
  1037.     {
  1038.         $this->caffeine $caffeine;
  1039.     }
  1040.     /**
  1041.      * @return mixed
  1042.      */
  1043.     public function getTheobromine()
  1044.     {
  1045.         return $this->theobromine;
  1046.     }
  1047.     /**
  1048.      * @param mixed $theobromine
  1049.      */
  1050.     public function setTheobromine($theobromine): void
  1051.     {
  1052.         $this->theobromine $theobromine;
  1053.     }
  1054.     /**
  1055.      * @return mixed
  1056.      */
  1057.     public function getAlcohol()
  1058.     {
  1059.         return $this->alcohol;
  1060.     }
  1061.     /**
  1062.      * @param mixed $alcohol
  1063.      */
  1064.     public function setAlcohol($alcohol): void
  1065.     {
  1066.         $this->alcohol $alcohol;
  1067.     }
  1068.     /**
  1069.      * @return mixed
  1070.      */
  1071.     public function getWater()
  1072.     {
  1073.         return $this->water;
  1074.     }
  1075.     /**
  1076.      * @param mixed $water
  1077.      */
  1078.     public function setWater($water): void
  1079.     {
  1080.         $this->water $water;
  1081.     }
  1082.     /**
  1083.      * @return mixed
  1084.      */
  1085.     public function getProtein()
  1086.     {
  1087.         return $this->protein;
  1088.     }
  1089.     /**
  1090.      * @param mixed $protein
  1091.      */
  1092.     public function setProtein($protein): void
  1093.     {
  1094.         $this->protein $protein;
  1095.     }
  1096.     /**
  1097.      * @return mixed
  1098.      */
  1099.     public function getSugarsTotal()
  1100.     {
  1101.         return $this->sugars_total;
  1102.     }
  1103.     /**
  1104.      * @param mixed $sugars_total
  1105.      */
  1106.     public function setSugarsTotal($sugars_total): void
  1107.     {
  1108.         $this->sugars_total $sugars_total;
  1109.     }
  1110.     /**
  1111.      * @return mixed
  1112.      */
  1113.     public function getHealthyMinutes()
  1114.     {
  1115.         return $this->healthy_minutes;
  1116.     }
  1117.     /**
  1118.      * @param mixed $healthy_minutes
  1119.      *
  1120.      * @return Recipes
  1121.      */
  1122.     public function setHealthyMinutes($healthy_minutes)
  1123.     {
  1124.         $this->healthy_minutes $healthy_minutes;
  1125.         return $this;
  1126.     }
  1127. }