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:
parent
4b7187a576
commit
e085b8e109
2 changed files with 7 additions and 8 deletions
10
.travis.yml
10
.travis.yml
|
@ -1,9 +1,13 @@
|
||||||
language: php
|
language: php
|
||||||
dist: trusty
|
dist: trusty
|
||||||
php:
|
php:
|
||||||
- '7.0'
|
- 7.0
|
||||||
- '7.1'
|
- 7.1
|
||||||
# - '7.2'
|
- 7.2
|
||||||
|
matrix:
|
||||||
|
fast_finish: true
|
||||||
|
allow_failures:
|
||||||
|
- php: 7.2
|
||||||
sudo: false
|
sudo: false
|
||||||
cache:
|
cache:
|
||||||
directories:
|
directories:
|
||||||
|
|
|
@ -18,11 +18,6 @@ class LocationRepository extends EloquentRepository implements LocationRepositor
|
||||||
{
|
{
|
||||||
use Searchable;
|
use Searchable;
|
||||||
|
|
||||||
/**
|
|
||||||
* @var string
|
|
||||||
*/
|
|
||||||
protected $searchTerm;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* {@inheritdoc}
|
* {@inheritdoc}
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in a new issue