Advertisement
Guest User

ContactRepository

a guest
Oct 23rd, 2014
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. namespace REV2\repositories;
  2. use Contact;
  3.  
  4. class ContactRepository implements ContactRepositoryInterface
  5. {
  6. public function all() {
  7. return Contact::all();
  8. }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement