Skip to content

Instantly share code, notes, and snippets.

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

  • Save anvodev/239f6c59dfe796581f4e22a7c01fa0f8 to your computer and use it in GitHub Desktop.

Select an option

Save anvodev/239f6c59dfe796581f4e22a7c01fa0f8 to your computer and use it in GitHub Desktop.
<?php
//AtHomeCustomer.php
class AtHomeConsumer
{
public function readyToWork()
{
echo 'I am stay at home!' . PHP_EOL;
$egg = new Egg();
$coffee = new EggCoffee($egg);
$coffee->drink();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment