Skip to content

Instantly share code, notes, and snippets.

@jlem
Created October 27, 2015 19:20
Show Gist options
  • Save jlem/eef1b6115af2c1792100 to your computer and use it in GitHub Desktop.
Save jlem/eef1b6115af2c1792100 to your computer and use it in GitHub Desktop.
Medium Laravel Article - MemberRepositoryInterface.php
<?php
interface MemberRepositoryInterface
{
public function find($id);
public function findTopPosters($count = 10);
public function save(MemberInterface $member);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment