enable php 7.2 in travis and fix repository (#797)

This was really amusing to watch @arcdigital attempt to do.
This commit is contained in:
Anand Capur 2017-12-05 07:26:29 -08:00 committed by Dane Everitt
parent 4b7187a576
commit e085b8e109
2 changed files with 7 additions and 8 deletions

View file

@ -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:

View file

@ -18,11 +18,6 @@ class LocationRepository extends EloquentRepository implements LocationRepositor
{
use Searchable;
/**
* @var string
*/
protected $searchTerm;
/**
* {@inheritdoc}
*/