Skip to content

Instantly share code, notes, and snippets.

@genkovich
Created April 15, 2021 20:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save genkovich/dac0b49bdd25f8451563e07bb7016559 to your computer and use it in GitHub Desktop.
Save genkovich/dac0b49bdd25f8451563e07bb7016559 to your computer and use it in GitHub Desktop.
<?php
class Image {}
class JpgImage extends Image {}
class Renderer
{
public function render(): Image
{
}
}
class PhotoRenderer extends Renderer
{
public function render(): JpgImage
{
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment