Skip to content

Instantly share code, notes, and snippets.

@anvodev
Created June 4, 2020 02:38
Show Gist options
  • Save anvodev/0cad57cbac94aee1995fd70ae33f609a to your computer and use it in GitHub Desktop.
Save anvodev/0cad57cbac94aee1995fd70ae33f609a to your computer and use it in GitHub Desktop.
<?php
//EggCoffee.php
class EggCoffee implements CoffeeInterface
{
private $egg;
public function __construct(Egg $egg)
{
$this->egg = $egg;
}
public function drink()
{
$this->egg->taste();
echo 'I am awaken with egg coffee!' . PHP_EOL;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment