Created
January 26, 2018 18:43
-
-
Save zabaala/2011c79b9c66789ec9992e9d2f4983a5 to your computer and use it in GitHub Desktop.
Repository: the right way
This file contains hidden or 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 | |
| interface UserRepositoryInterface | |
| { | |
| public function __construct(UserModel $userModel); | |
| public function createNewUser(User $user); | |
| public function UpdateUserById(User $user, $id); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment