flush scout products

This commit is contained in:
merdan 2022-09-05 17:03:32 +05:00
parent c72a04d1c1
commit 797d5dafc2
5 changed files with 5 additions and 5 deletions

View File

@ -14,7 +14,7 @@ class CategoryRepository extends WCategoryRepository
*
* @return mixed
*/
public function model()
public function model(): string
{
return Category::class;
}

View File

@ -7,7 +7,7 @@ use Webkul\Core\Repositories\ChannelRepository as BagistoChannelRepo;
class ChannelRepository extends BagistoChannelRepo
{
function model()
function model(): string
{
return Channel::class;
}

View File

@ -146,7 +146,7 @@ class ProductFlatRepository extends Repository
*
* @return mixed
*/
function model()
function model(): string
{
return 'Webkul\Product\Contracts\Product';
}

View File

@ -12,7 +12,7 @@ class VendorProductRepository extends Repository
){
parent::__construct($app);
}
public function model()
public function model(): string
{
return 'Webkul\Marketplace\Contracts\Product';
}

View File

@ -12,7 +12,7 @@ class VendorRepository extends SellerRepository
*
* @return mixed
*/
function model()
function model(): string
{
return Vendor::class;
}