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