Created
June 4, 2020 00:05
-
-
Save anvodev/3b414d071f619326c349598ec8772657 to your computer and use it in GitHub Desktop.
Consumer need coffee to ready to work
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 | |
| //Consumer.php | |
| class Consumer | |
| { | |
| private $coffee; | |
| public function __construct(CoffeeInterface $coffee) | |
| { | |
| $this->coffee = $coffee; | |
| } | |
| public function readyToWork() | |
| { | |
| $this->coffee->drink(); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment