Skip to content

Instantly share code, notes, and snippets.

@oojacoboo
Last active August 5, 2019 05:16
Show Gist options
  • Save oojacoboo/82f91b87a3bf136adfbbad616480c492 to your computer and use it in GitHub Desktop.
Save oojacoboo/82f91b87a3bf136adfbbad616480c492 to your computer and use it in GitHub Desktop.
<?php
class Liger implements Animal
{
public function getSpecies(): LionTiger
{
return new LionTiger();
}
}
class LionTiger implements Species
{
function getName()
{
return 'Lion & Tiger';
}
}
<?php
interface Species
{
function getName(): string;
}
interface Animal
{
function getSpecies(): Species;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment