public function cost()
 {
     return 0.1 + $this->beverage->cost();
 }
Example #2
0
 public function __construct()
 {
     parent::__construct();
     $this->description = " DarkRoast";
 }
Example #3
0
 public function __construct()
 {
     parent::__construct();
     $this->description = " HouseBlend";
 }
Example #4
0
 public function __construct()
 {
     parent::__construct();
     $this->description = " Espresso";
 }
Example #5
0
 public function __construct()
 {
     parent::__construct();
     $this->description = " Decaf";
 }