Skip to content

Instantly share code, notes, and snippets.

@anvodev
Created June 4, 2020 00:05
Show Gist options
  • Select an option

  • Save anvodev/3b414d071f619326c349598ec8772657 to your computer and use it in GitHub Desktop.

Select an option

Save anvodev/3b414d071f619326c349598ec8772657 to your computer and use it in GitHub Desktop.
Consumer need coffee to ready to work
<?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