Commit a33e9a80 authored by Silvio Gratani's avatar Silvio Gratani

fix

parent 5abd4e02
......@@ -222,12 +222,12 @@ abstract class BaseCacheDecorator implements BaseRepository
}
/**
* @param string $field
* @param array $values
* @inheritdoc
*/
public function whereIn(string $field, array $values)
{
return $this->repository->whereIn($field, $values);
}
/**
* @inheritdoc
......
......@@ -215,12 +215,10 @@ abstract class EloquentBaseRepository implements BaseRepository
}
/**
* @param string $field
* @param array $values
* @inheritdoc
*/
public function whereIn(string $field, array $values)
public function whereIn(string $field, array $values) : Builder
{
return $this->model->whereIn($field, $values);
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment