Repository interface improvements

This commit is contained in:
Dane Everitt
2017-07-15 11:52:34 -05:00
parent 1f4f6024cc
commit bc3366b10d
23 changed files with 829 additions and 179 deletions

View File

@@ -152,4 +152,12 @@ abstract class EloquentRepository extends Repository implements RepositoryInterf
{
// TODO: Implement massUpdate() method.
}
/**
* {@inheritdoc}
*/
public function all()
{
return $this->getBuilder()->get($this->getColumns());
}
}