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} */