Ejemplo n.º 1
0
 function __construct(Beverage $beverage)
 {
     parent::__construct($beverage);
     $this->description = 'Mocha';
     $this->cost = 0.2;
 }
Ejemplo n.º 2
0
 function __construct(Beverage $beverage)
 {
     parent::__construct($beverage);
     $this->description = 'Whip';
     $this->cost = 0.3;
 }