From e085b8e109f27a8dc1eb36cb89b75bd5fac94100 Mon Sep 17 00:00:00 2001 From: Anand Capur Date: Tue, 5 Dec 2017 07:26:29 -0800 Subject: [PATCH] enable php 7.2 in travis and fix repository (#797) This was really amusing to watch @arcdigital attempt to do. --- .travis.yml | 10 +++++++--- app/Repositories/Eloquent/LocationRepository.php | 5 ----- 2 files changed, 7 insertions(+), 8 deletions(-) diff --git a/.travis.yml b/.travis.yml index 277c25df2..d07b2cbfa 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,9 +1,13 @@ language: php dist: trusty php: - - '7.0' - - '7.1' -# - '7.2' + - 7.0 + - 7.1 + - 7.2 +matrix: + fast_finish: true + allow_failures: + - php: 7.2 sudo: false cache: directories: diff --git a/app/Repositories/Eloquent/LocationRepository.php b/app/Repositories/Eloquent/LocationRepository.php index 04243b8a8..b893a0588 100644 --- a/app/Repositories/Eloquent/LocationRepository.php +++ b/app/Repositories/Eloquent/LocationRepository.php @@ -18,11 +18,6 @@ class LocationRepository extends EloquentRepository implements LocationRepositor { use Searchable; - /** - * @var string - */ - protected $searchTerm; - /** * {@inheritdoc} */