mirror of
https://github.com/CachetHQ/Cachet.git
synced 2025-03-14 20:39:44 +01:00
Added a missing semicolon
This commit is contained in:
parent
670b7b7a73
commit
ee2d3bce3b
@ -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();
|
||||
|
Loading…
x
Reference in New Issue
Block a user