Completed
Push — master ( 56bbda...d5b9cf )
by Scott
02:43
created
models/Address.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -118,7 +118,7 @@
 block discarded – undo
118 118
      */
119 119
     protected function updatePrimaryAddresses()
120 120
     {
121
-        if (! $this->customer_id) {
121
+        if (!$this->customer_id) {
122 122
             return;
123 123
         }
124 124
 
Please login to merge, or discard this patch.
updates/1.0/create_addresses_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_addresses', function (Blueprint $table) {
11
+        Schema::create('bedard_shop_addresses', function(Blueprint $table) {
12 12
             $table->engine = 'InnoDB';
13 13
             $table->increments('id');
14 14
             $table->integer('customer_id')->unsigned()->nullable()->index();
Please login to merge, or discard this patch.