From d900e274c611299699bf12720d5eadd64bbbd361 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Thu, 18 Oct 2018 23:21:00 +0100 Subject: [PATCH] Test on PHP 7.3 (#3286) --- .travis.yml | 3 +++ resources/views/partials/modules/timeline.blade.php | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 5d533fba6d76..770689a0d13e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -26,6 +26,9 @@ jobs: - stage: Unit tests script: vendor/bin/phpunit php: 7.2 + - stage: Unit tests + script: vendor/bin/phpunit + php: 7.3 - stage: Code coverage script: - vendor/bin/phpunit --coverage-clover build/logs/clover.xml diff --git a/resources/views/partials/modules/timeline.blade.php b/resources/views/partials/modules/timeline.blade.php index d4f6b76109da..1c99049904eb 100644 --- a/resources/views/partials/modules/timeline.blade.php +++ b/resources/views/partials/modules/timeline.blade.php @@ -2,7 +2,7 @@

{{ trans('cachet.incidents.past') }}

@foreach($allIncidents as $date => $incidents) - @include('partials.incidents', [compact($date), compact($incidents)]) + @include('partials.incidents', [@compact($date), @compact($incidents)]) @endforeach