Created
June 4, 2020 00:44
-
-
Save anvodev/22b88458ce9bf704d4df5907715d5851 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 | |
| //AtCoffeeShopConsumer.php | |
| class AtCoffeeShopConsumer | |
| { | |
| private $coffee; | |
| public function __construct(CoffeeInterface $coffee) | |
| { | |
| $this->coffee = $coffee; | |
| } | |
| public function readyToWork() | |
| { | |
| echo 'I am at the coffee shop!' . PHP_EOL; | |
| $this->coffee->drink(); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment