Passed
Push — master ( 7d7316...33bfdb )
by Reza
03:46
created
src/Commands/Actions/Uninstall.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
             ? true
18 18
             : $this->confirm("Do you really want to uninstall the panel ? (All files and components will be deleted)", true);
19 19
 
20
-        if($status){
20
+        if ($status) {
21 21
             File::deleteDirectory(app_path('Http/Livewire/Admin'));
22 22
             File::deleteDirectory(resource_path('views/livewire/admin'));
23 23
             File::deleteDirectory(resource_path('views/vendor/admin'));
Please login to merge, or discard this patch.
src/Commands/Actions/Reinstall.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
     public function handle()
15 15
     {
16 16
         $status = $this->confirm("Do you really want to reinstall the panel ? (All components will be deleted)", true);
17
-        if($status) {
17
+        if ($status) {
18 18
             Artisan::call("panel:uninstall", [
19 19
                 '--force' => true,
20 20
             ]);
Please login to merge, or discard this patch.