Skip to content

Instantly share code, notes, and snippets.

@mgsmus
Last active December 8, 2019 19:12
Show Gist options
  • Save mgsmus/ecc9f74488880ee7a0d0d5352534330c to your computer and use it in GitHub Desktop.
Save mgsmus/ecc9f74488880ee7a0d0d5352534330c to your computer and use it in GitHub Desktop.
<?php
interface Factory {
function make(): object;
}
class UserFactory implements Factory {
function make(): User {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment