Last active
September 20, 2017 17:39
-
-
Save vincentdesmares/3ba86f089d498663d5362061531d013a to your computer and use it in GitHub Desktop.
php-type-hinting.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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