@@ -69,19 +69,19 @@ |
||
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 | } |