Apply fixes from StyleCI (#2981)

[ci skip] [skip ci]
This commit is contained in:
James Brooks 2018-03-30 17:58:25 +01:00 committed by GitHub
parent 42227d937d
commit 48b6d2c34d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -19,7 +19,6 @@ use CachetHQ\Cachet\Models\Metric;
use CachetHQ\Cachet\Models\Schedule; use CachetHQ\Cachet\Models\Schedule;
use CachetHQ\Cachet\Repositories\Metric\MetricRepository; use CachetHQ\Cachet\Repositories\Metric\MetricRepository;
use CachetHQ\Cachet\Services\Dates\DateFactory; use CachetHQ\Cachet\Services\Dates\DateFactory;
use Exception;
use GrahamCampbell\Binput\Facades\Binput; use GrahamCampbell\Binput\Facades\Binput;
use Illuminate\Routing\Controller; use Illuminate\Routing\Controller;
use Illuminate\Support\Facades\Auth; use Illuminate\Support\Facades\Auth;
@ -72,8 +71,8 @@ class StatusPageController extends AbstractApiController
->orderBy('occurred_at', 'desc') ->orderBy('occurred_at', 'desc')
->get() ->get()
->map(function (Incident $incident) { ->map(function (Incident $incident) {
return app(DateFactory::class)->make($incident->occurred_at)->toDateString(); return app(DateFactory::class)->make($incident->occurred_at)->toDateString();
})->unique() })->unique()
->values(); ->values();
$numIncidentDays = count($allIncidentDays); $numIncidentDays = count($allIncidentDays);