Completed
Push — master ( ea593a...141751 )
by claudio
07:51
created
app/Timeslot.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -26,19 +26,19 @@
 block discarded – undo
26 26
      *
27 27
      * @var array
28 28
      */
29
-    protected $fillable = ['time_start', 'time_end'];
29
+    protected $fillable = [ 'time_start', 'time_end' ];
30 30
 
31 31
     /**
32 32
      * The attributes excluded from the model's JSON form.
33 33
      *
34 34
      * @var array
35 35
      */
36
-    protected $hidden = ['pivot', 'calendar'];
36
+    protected $hidden = [ 'pivot', 'calendar' ];
37 37
 
38 38
     /**
39 39
      * @var array
40 40
      */
41
-    protected $touches = ['calendar'];
41
+    protected $touches = [ 'calendar' ];
42 42
 
43 43
     /**
44 44
      * @return \Illuminate\Database\Eloquent\Relations\BelongsTo
Please login to merge, or discard this patch.