Commit 66722138 authored by Silvio Gratani's avatar Silvio Gratani

fixed missing return typehint on BaseCacheDecorator

parent a33e9a80
......@@ -224,7 +224,7 @@ abstract class BaseCacheDecorator implements BaseRepository
/**
* @inheritdoc
*/
public function whereIn(string $field, array $values)
public function whereIn(string $field, array $values) : Builder
{
return $this->repository->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