Skip to content

Commit

Permalink
Test on PHP 7.3 (#3286)
Browse files Browse the repository at this point in the history
  • Loading branch information
jbrooksuk authored and GrahamCampbell committed Oct 18, 2018
1 parent 97328b6 commit d900e27
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion resources/views/partials/modules/timeline.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<div class="section-timeline">
<h1>{{ trans('cachet.incidents.past') }}</h1>
@foreach($allIncidents as $date => $incidents)
@include('partials.incidents', [compact($date), compact($incidents)])
@include('partials.incidents', [@compact($date), @compact($incidents)])
@endforeach
</div>

Expand Down

0 comments on commit d900e27

Please sign in to comment.