Test Setup Failed
Branch master (86f4a4)
by Shawn
04:57
created
app/Providers/ComposerServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
     public function boot()
17 17
     {
18 18
         // Pass the logged in user's full name to the layouts._header view.
19
-        view()->composer(['layouts._navbar', 'home._last_login'], function ($view) {
19
+        view()->composer(['layouts._navbar', 'home._last_login'], function($view) {
20 20
             $view->with('logged_in_user', Auth::user()->user_full_name);
21 21
             $view->with('duties', Duty::all());
22 22
         });
Please login to merge, or discard this patch.
app/Visit.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
      */
39 39
     public function scopeActiveUsers($query)
40 40
     {
41
-        return $query->whereHas('user', function ($q) {
41
+        return $query->whereHas('user', function($q) {
42 42
             $q->where('status', 'active');
43 43
         });
44 44
     }
Please login to merge, or discard this patch.
app/Setting.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,5 +17,5 @@
 block discarded – undo
17 17
     public $incrementing = false;
18 18
     protected $primaryKey = 'name';
19 19
 
20
-    protected $fillable = array('name','primary','secondary');
20
+    protected $fillable = array('name', 'primary', 'secondary');
21 21
 }
Please login to merge, or discard this patch.