|
<?php
|
|
|
|
namespace Webkul\Velocity\Repositories;
|
|
|
|
use Webkul\Core\Eloquent\Repository;
|
|
|
|
class VelocityMetadataRepository extends Repository
|
|
{
|
|
/**
|
|
* Specify Model class name
|
|
*
|
|
* @return string
|
|
*/
|
|
function model()
|
|
{
|
|
return 'Webkul\Velocity\Contracts\VelocityMetadata';
|
|
}
|
|
} |