Completed
Push — master ( 7d67c6...a06954 )
by Scott
03:27
created
models/Discount.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -22,25 +22,25 @@
 block discarded – undo
22 22
     /**
23 23
      * @var array Guarded fields
24 24
      */
25
-    protected $guarded = ['*'];
25
+    protected $guarded = [ '*' ];
26 26
 
27 27
     /**
28 28
      * @var array Fillable fields
29 29
      */
30
-    protected $fillable = [];
30
+    protected $fillable = [ ];
31 31
 
32 32
     /**
33 33
      * @var array Relations
34 34
      */
35
-    public $hasOne = [];
36
-    public $hasMany = [];
37
-    public $belongsTo = [];
38
-    public $belongsToMany = [];
39
-    public $morphTo = [];
40
-    public $morphOne = [];
41
-    public $morphMany = [];
42
-    public $attachOne = [];
43
-    public $attachMany = [];
35
+    public $hasOne = [ ];
36
+    public $hasMany = [ ];
37
+    public $belongsTo = [ ];
38
+    public $belongsToMany = [ ];
39
+    public $morphTo = [ ];
40
+    public $morphOne = [ ];
41
+    public $morphMany = [ ];
42
+    public $attachOne = [ ];
43
+    public $attachMany = [ ];
44 44
 
45 45
     /**
46 46
      * Filter form fields
Please login to merge, or discard this patch.
updates/1.0/create_discounts_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
 {
9 9
     public function up()
10 10
     {
11
-        Schema::create('bedard_shop_discounts', function (Blueprint $table) {
11
+        Schema::create('bedard_shop_discounts', function(Blueprint $table) {
12 12
             $table->engine = 'InnoDB';
13 13
             $table->increments('id');
14 14
             $table->string('name')->default('');
Please login to merge, or discard this patch.