Skip to content

Instantly share code, notes, and snippets.

@zabaala
Created January 26, 2018 18:43
Show Gist options
  • Select an option

  • Save zabaala/2011c79b9c66789ec9992e9d2f4983a5 to your computer and use it in GitHub Desktop.

Select an option

Save zabaala/2011c79b9c66789ec9992e9d2f4983a5 to your computer and use it in GitHub Desktop.
Repository: the right way
<?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