Skip to content

Instantly share code, notes, and snippets.

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

  • Save anvodev/22b88458ce9bf704d4df5907715d5851 to your computer and use it in GitHub Desktop.

Select an option

Save anvodev/22b88458ce9bf704d4df5907715d5851 to your computer and use it in GitHub Desktop.
<?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