From 0af195af868b7b3411c0c7fd33242f8a553268da Mon Sep 17 00:00:00 2001 From: James Brooks Date: Fri, 25 Nov 2016 20:19:46 +0000 Subject: [PATCH] Apply fixes from StyleCI [ci skip] [skip ci] --- app/Composers/DashboardComposer.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Composers/DashboardComposer.php b/app/Composers/DashboardComposer.php index ea949b56..40f03ae1 100644 --- a/app/Composers/DashboardComposer.php +++ b/app/Composers/DashboardComposer.php @@ -40,6 +40,6 @@ class DashboardComposer $view->withIncidentTemplateCount(IncidentTemplate::count()); $view->withScheduleCount(Schedule::count()); $view->withSubscriberCount(Subscriber::isVerified()->count()); - $view->withIsWriteable(is_writeable(app()->bootstrapPath().'/cachet')); + $view->withIsWriteable(is_writable(app()->bootstrapPath().'/cachet')); } }