Update CacheableRepository interface for PHP 7.2

This commit is contained in:
Nabeel Shahzad
2017-12-06 22:48:42 -06:00
parent 168271bd39
commit 6c860691d6
10 changed files with 350 additions and 9 deletions

View File

@@ -4,10 +4,10 @@ namespace App\Repositories;
use App\Models\Flight;
use App\Repositories\Criteria\WhereCriteria;
use App\Repositories\Traits\CacheableRepository;
use Illuminate\Foundation\Http\FormRequest;
use Illuminate\Http\Request;
use Prettus\Repository\Contracts\CacheableInterface;
use Prettus\Repository\Traits\CacheableRepository;
class FlightRepository extends BaseRepository implements CacheableInterface
{