Skip to content

Instantly share code, notes, and snippets.

@Mombuyish
Created April 26, 2017 17:08
Show Gist options
  • Save Mombuyish/0f0359c122d9fbe152c459628b11a25d to your computer and use it in GitHub Desktop.
Save Mombuyish/0f0359c122d9fbe152c459628b11a25d to your computer and use it in GitHub Desktop.
<?php
class PostRepository
{
protected $model;
public function __construct(Post $model)
{
$this->model = $model;
}
public function getAll()
{
return $this->model->all();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment