Created
June 4, 2020 00:38
-
-
Save anvodev/239f6c59dfe796581f4e22a7c01fa0f8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| //AtHomeCustomer.php | |
| class AtHomeConsumer | |
| { | |
| public function readyToWork() | |
| { | |
| echo 'I am stay at home!' . PHP_EOL; | |
| $egg = new Egg(); | |
| $coffee = new EggCoffee($egg); | |
| $coffee->drink(); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment