phpvms/app/Repositories/NavdataRepository.php
2018-08-26 16:40:04 +00:00

25 lines
516 B
PHP

<?php
namespace App\Repositories;
use App\Interfaces\Repository;
use App\Models\Navdata;
use Prettus\Repository\Contracts\CacheableInterface;
use Prettus\Repository\Traits\CacheableRepository;
/**
* Class NavdataRepository
*/
class NavdataRepository extends Repository implements CacheableInterface
{
use CacheableRepository;
// Super short lived cache for when the navdata stuff is re-imported
protected $cacheMinutes = 5;
public function model()
{
return Navdata::class;
}
}