Added a missing semicolon

This commit is contained in:
Graham Campbell 2015-01-01 18:41:31 +00:00
parent 670b7b7a73
commit ee2d3bce3b

View File

@ -86,7 +86,7 @@ abstract class EloquentRepository
*/
public function findByOrFail($key, $value, $columns = ['*'])
{
$model = $this->model->where($key, $value)->first($columns)
$model = $this->model->where($key, $value)->first($columns);
if ($model === null) {
throw new ModelNotFoundException();