sarga/packages/Webkul/Attribute/src/Repositories/AttributeOptionRepository.php

25 lines
472 B
PHP
Raw Normal View History

2019-02-18 07:30:40 +00:00
<?php
2018-07-17 13:28:34 +00:00
namespace Webkul\Attribute\Repositories;
2019-02-18 07:30:40 +00:00
2018-07-17 13:28:34 +00:00
use Webkul\Core\Eloquent\Repository;
/**
* Attribute Option Reposotory
*
* @author Jitendra Singh <jitendra@webkul.com>
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
*/
class AttributeOptionRepository extends Repository
{
2019-02-18 07:30:40 +00:00
2018-07-17 13:28:34 +00:00
/**
* Specify Model class name
*
* @return mixed
*/
function model()
{
2019-02-18 07:30:40 +00:00
return 'Webkul\Attribute\Contracts\AttributeOption';
2018-07-17 13:28:34 +00:00
}
}