src/Entity/Ingredients.php line 13

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