sarga/packages/Webkul/Checkout/src/Repositories/CartAddressRepository.php

24 lines
475 B
PHP
Raw Normal View History

2018-09-26 04:21:14 +00:00
<?php
namespace Webkul\Checkout\Repositories;
2018-09-26 04:21:14 +00:00
use Webkul\Core\Eloquent\Repository;
/**
2020-03-05 14:52:20 +00:00
* Cart Address Repository
2018-09-26 04:21:14 +00:00
*
* @author Prashant Singh <prashant.singh852@webkul.com>
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
*/
class CartAddressRepository extends Repository
{
/**
* Specify Model class name
*
2020-03-05 14:52:20 +00:00
* @return string
2018-09-26 04:21:14 +00:00
*/
2022-08-10 15:10:59 +00:00
function model(): string
2018-09-26 04:21:14 +00:00
{
2019-02-18 07:30:40 +00:00
return 'Webkul\Checkout\Contracts\CartAddress';
2018-09-26 04:21:14 +00:00
}
}