Passed
Pull Request — master (#4)
by
unknown
05:42
created
src/Console/Command/RequireMODXPackages.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -69,19 +69,19 @@
 block discarded – undo
69 69
 
70 70
             switch (strtolower(trim($method))) {
71 71
                 case 'remove':
72
-                    $output->writeln('### Orchestrator is attempting to remove the MODX Extra Package: ' . $signature . ' and for the provider: ' . $provider_name . '  ###');
72
+                    $output->writeln('### Orchestrator is attempting to remove the MODX Extra Package: '.$signature.' and for the provider: '.$provider_name.'  ###');
73 73
                     // uninstall/remove
74 74
                     $modxPackages->removePackage($signature);
75 75
 
76 76
                 break;
77 77
                 case 'uninstall':
78
-                    $output->writeln('### Orchestrator is attempting to uninstall the MODX Extra Package: ' . $signature . ' and for the provider: ' . $provider_name . '  ###');
78
+                    $output->writeln('### Orchestrator is attempting to uninstall the MODX Extra Package: '.$signature.' and for the provider: '.$provider_name.'  ###');
79 79
                     // uninstall/remove
80 80
                     $modxPackages->unInstallPackage($signature);
81 81
                     break;
82 82
 
83 83
                 default:
84
-                $output->writeln('### Orchestrator is attempting to require the MODX Extra Package: ' . $signature . ' and for the provider: ' . $provider_name . '  ###');
84
+                $output->writeln('### Orchestrator is attempting to require the MODX Extra Package: '.$signature.' and for the provider: '.$provider_name.'  ###');
85 85
 
86 86
                 $modxPackages->requirePackage($signature, $latest, $provider_name);
87 87
             }
Please login to merge, or discard this patch.
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -88,6 +88,6 @@
 block discarded – undo
88 88
         }
89 89
 
90 90
         $output->writeln($this->getRunStats());
91
-		return 1;
91
+        return 1;
92 92
     }
93 93
 }
Please login to merge, or discard this patch.
src/Console/Command/InstallPackages.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,6 +53,6 @@
 block discarded – undo
53 53
         }
54 54
 
55 55
         $output->writeln($this->getRunStats());
56
-		return 1;
56
+        return 1;
57 57
     }
58 58
 }
Please login to merge, or discard this patch.
src/Console/Command/Package.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,6 +31,6 @@
 block discarded – undo
31 31
         Orchestrator::install();
32 32
 
33 33
         $output->writeln('### Orchestrator has been installed/updated ###');
34
-		return 1;
34
+        return 1;
35 35
     }
36 36
 }
Please login to merge, or discard this patch.
src/Console/Command/UninstallPackages.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,6 +53,6 @@
 block discarded – undo
53 53
         }
54 54
 
55 55
         $output->writeln($this->getRunStats());
56
-		return 1;
56
+        return 1;
57 57
     }
58 58
 }
Please login to merge, or discard this patch.