2021-03-12 13:37:08 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace Webkul\Sales\Repositories;
|
|
|
|
|
|
|
|
|
|
use Webkul\Core\Eloquent\Repository;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Order Transaction Repository
|
|
|
|
|
*
|
|
|
|
|
* @author Jitendra Singh <jitendra@webkul.com>
|
|
|
|
|
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
|
|
|
*/
|
|
|
|
|
class OrderTransactionRepository extends Repository
|
|
|
|
|
{
|
|
|
|
|
/**
|
|
|
|
|
* Specify Model class name
|
|
|
|
|
*
|
|
|
|
|
* @return string
|
|
|
|
|
*/
|
2022-08-10 15:10:59 +00:00
|
|
|
function model(): string
|
2021-03-12 13:37:08 +00:00
|
|
|
{
|
2022-08-10 15:10:59 +00:00
|
|
|
return 'Webkul\Sales\Contracts\OrderTransaction';
|
2021-03-12 13:37:08 +00:00
|
|
|
}
|
|
|
|
|
}
|