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

25 lines
472 B
PHP

<?php
namespace Webkul\Attribute\Repositories;
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
{
/**
* Specify Model class name
*
* @return mixed
*/
function model()
{
return 'Webkul\Attribute\Models\AttributeOption';
}
}