Skip to content

Instantly share code, notes, and snippets.

@syofyanzuhad
Forked from nahidulhasan/Tea.php
Created September 27, 2021 15:32
Show Gist options
  • Save syofyanzuhad/5e6e95b06714a9a41d6a3d2b98e7744f to your computer and use it in GitHub Desktop.
Save syofyanzuhad/5e6e95b06714a9a41d6a3d2b98e7744f to your computer and use it in GitHub Desktop.
<?php
class Tea
{
public function addTea()
{
var_dump('Add proper amount of tea');
return $this;
}
protected function addHotWater()
{
var_dump('Pour Hot water into cup');
return $this;
}
protected function addSugar()
{
var_dump('Add proper amount of sugar');
return $this;
}
protected function addMilk()
{
var_dump('Add proper amount of Milk');
return $this;
}
public function make()
{
return $this
->addHotWater()
->addSugar()
->addTea()
->addMilk();
}
}
$tea = new Tea();
$tea->make();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment