18 lines
308 B
PHP
18 lines
308 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Webkul\Velocity\Repositories;
|
||
|
|
|
||
|
|
use Webkul\Core\Eloquent\Repository;
|
||
|
|
|
||
|
|
class VelocityMetadataRepository extends Repository
|
||
|
|
{
|
||
|
|
/**
|
||
|
|
* Specify Model class name
|
||
|
|
*
|
||
|
|
* @return mixed
|
||
|
|
*/
|
||
|
|
function model()
|
||
|
|
{
|
||
|
|
return 'Webkul\Velocity\Models\VelocityMetadata';
|
||
|
|
}
|
||
|
|
}
|