Completed
Push — master ( 6d6c81...5c7eb6 )
by Scott
02:37
created
models/Price.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -16,24 +16,24 @@
 block discarded – undo
16 16
     /**
17 17
      * @var array Guarded fields
18 18
      */
19
-    protected $guarded = ['*'];
19
+    protected $guarded = [ '*' ];
20 20
 
21 21
     /**
22 22
      * @var array Fillable fields
23 23
      */
24
-    protected $fillable = [];
24
+    protected $fillable = [ ];
25 25
 
26 26
     /**
27 27
      * @var array Relations
28 28
      */
29
-    public $hasOne = [];
30
-    public $hasMany = [];
31
-    public $belongsTo = [];
32
-    public $belongsToMany = [];
33
-    public $morphTo = [];
34
-    public $morphOne = [];
35
-    public $morphMany = [];
36
-    public $attachOne = [];
37
-    public $attachMany = [];
29
+    public $hasOne = [ ];
30
+    public $hasMany = [ ];
31
+    public $belongsTo = [ ];
32
+    public $belongsToMany = [ ];
33
+    public $morphTo = [ ];
34
+    public $morphOne = [ ];
35
+    public $morphMany = [ ];
36
+    public $attachOne = [ ];
37
+    public $attachMany = [ ];
38 38
 
39 39
 }
40 40
\ No newline at end of file
Please login to merge, or discard this patch.