Completed
Push — development ( 868168...b37589 )
by Ashutosh
08:41
created
app/Http/Controllers/Auth/AuthController.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -91,10 +91,10 @@
 block discarded – undo
91 91
                 //Execute cUrl session
92 92
                 $response = curl_exec($ch);
93 93
                 curl_close($ch);
94
-                 $licenseStatus = StatusSetting::pluck('license_status')->first();
94
+                    $licenseStatus = StatusSetting::pluck('license_status')->first();
95 95
                 if ($licenseStatus == 1) {
96 96
                 $addUserToLicensing = $this->licensing->addNewUser($user->first_name, $user->last_name, $user->email);
97
-               }   
97
+                }   
98 98
                
99 99
                 $mailchimp = new \App\Http\Controllers\Common\MailChimpController();
100 100
                 $r = $mailchimp->addSubscriber($user->email);
Please login to merge, or discard this patch.
app/Http/Controllers/Order/ExtendedOrderController.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -163,9 +163,9 @@
 block discarded – undo
163 163
         $clientEmail = $order->user->email;
164 164
         $order->domain = implode(',', $allowedDomains);
165 165
         $order->save();
166
-          $licenseStatus = StatusSetting::pluck('license_status')->first();
167
-         if ($licenseStatus == 1) {
168
-             $cont = new \App\Http\Controllers\License\LicenseController();
166
+            $licenseStatus = StatusSetting::pluck('license_status')->first();
167
+            if ($licenseStatus == 1) {
168
+                $cont = new \App\Http\Controllers\License\LicenseController();
169 169
         $updateLicensedDomain = $cont->updateLicensedDomain($clientEmail, $order->domain);
170 170
         //Now make Installation status as inactive
171 171
         $updateInstallStatus = $cont->updateInstalledDomain($clientEmail);
Please login to merge, or discard this patch.