Skip to content

Instantly share code, notes, and snippets.

@vincentdesmares
Last active September 20, 2017 17:39
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 vincentdesmares/3ba86f089d498663d5362061531d013a to your computer and use it in GitHub Desktop.
Save vincentdesmares/3ba86f089d498663d5362061531d013a to your computer and use it in GitHub Desktop.
php-type-hinting.php
<?php
class UserService {
public function createUser(string $name, User $parent = null, $isAdmin) : User
{
$user = new User($name);
...
return $user
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment