Skip to content

Instantly share code, notes, and snippets.

@mkusher
Created January 23, 2017 14:04
Show Gist options
  • Save mkusher/e9f448685ecad086f9430025fdd975e2 to your computer and use it in GitHub Desktop.
Save mkusher/e9f448685ecad086f9430025fdd975e2 to your computer and use it in GitHub Desktop.
<?php
interface Chef
{
public function cook();
}
class TrueItalianChef implements Chef
{
public function cook()
{
return new MargeryPizza();
}
}
interface Pizza
{
}
class MargeryPizza implements Pizza
{
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment