Commit a33e9a80 authored by Silvio Gratani's avatar Silvio Gratani

fix

parent 5abd4e02
...@@ -222,12 +222,12 @@ abstract class BaseCacheDecorator implements BaseRepository ...@@ -222,12 +222,12 @@ abstract class BaseCacheDecorator implements BaseRepository
} }
/** /**
* @param string $field * @inheritdoc
* @param array $values
*/ */
public function whereIn(string $field, array $values) public function whereIn(string $field, array $values)
{ {
return $this->repository->whereIn($field, $values); return $this->repository->whereIn($field, $values);
}
/** /**
* @inheritdoc * @inheritdoc
......
...@@ -215,12 +215,10 @@ abstract class EloquentBaseRepository implements BaseRepository ...@@ -215,12 +215,10 @@ abstract class EloquentBaseRepository implements BaseRepository
} }
/** /**
* @param string $field * @inheritdoc
* @param array $values
*/ */
public function whereIn(string $field, array $values) public function whereIn(string $field, array $values) : Builder
{ {
return $this->model->whereIn($field, $values); 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