Test Failed
Push — master ( 0ea38b...b999ba )
by Joe
02:53
created
src/Command/Parse.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@
 block discarded – undo
62 62
 	 * @param OutputInterface $output
63 63
 	 */
64 64
 	protected function execute(InputInterface $input, OutputInterface $output) {
65
-		$output->writeln([ // outputs multiple lines to the console (adding "\n" at the end of each line)
65
+		$output->writeln([// outputs multiple lines to the console (adding "\n" at the end of each line)
66 66
 			'MyAdmin DocBlock Parser',
67 67
 			'=======================',
68 68
 			''
Please login to merge, or discard this patch.
src/Command/Command.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@
 block discarded – undo
58 58
 	 * @param OutputInterface $output
59 59
 	 */
60 60
 	protected function execute(InputInterface $input, OutputInterface $output) {
61
-		$output->writeln([ // outputs multiple lines to the console (adding "\n" at the end of each line)
61
+		$output->writeln([// outputs multiple lines to the console (adding "\n" at the end of each line)
62 62
 			'User Creator',
63 63
 			'============',
64 64
 			''
Please login to merge, or discard this patch.
src/Installer.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -143,13 +143,13 @@
 block discarded – undo
143 143
 	public function getInstallPath(PackageInterface $package) {
144 144
 		if ($this->type == 'myadmin-template') {
145 145
 			$this->initializeTemplateDir();
146
-			$basePath = ($this->templateDir ? $this->templateDir.'/' : '') . $package->getPrettyName();
146
+			$basePath = ($this->templateDir ? $this->templateDir.'/' : '').$package->getPrettyName();
147 147
 		} else {
148 148
 			$this->initializeVendorDir();
149
-			$basePath = ($this->vendorDir ? $this->vendorDir.'/' : '') . $package->getPrettyName();
149
+			$basePath = ($this->vendorDir ? $this->vendorDir.'/' : '').$package->getPrettyName();
150 150
 		}
151 151
 		$targetDir = $package->getTargetDir();
152
-		return $basePath . ($targetDir ? '/'.$targetDir : '');
152
+		return $basePath.($targetDir ? '/'.$targetDir : '');
153 153
 	}
154 154
 
155 155
 	/**
Please login to merge, or discard this patch.
src/Command/UpdatePlugins.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@
 block discarded – undo
58 58
 	 * @param OutputInterface $output
59 59
 	 */
60 60
 	protected function execute(InputInterface $input, OutputInterface $output) {
61
-		$output->writeln([ // outputs multiple lines to the console (adding "\n" at the end of each line)
61
+		$output->writeln([// outputs multiple lines to the console (adding "\n" at the end of each line)
62 62
 			'User Creator',
63 63
 			'============',
64 64
 			''
Please login to merge, or discard this patch.
src/Command/CreateUser.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@
 block discarded – undo
58 58
 	 * @param OutputInterface $output
59 59
 	 */
60 60
 	protected function execute(InputInterface $input, OutputInterface $output) {
61
-		$output->writeln([ // outputs multiple lines to the console (adding "\n" at the end of each line)
61
+		$output->writeln([// outputs multiple lines to the console (adding "\n" at the end of each line)
62 62
 			'User Creator',
63 63
 			'============',
64 64
 			''
Please login to merge, or discard this patch.
src/Plugin.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -177,7 +177,7 @@
 block discarded – undo
177 177
 	}
178 178
 
179 179
 	public static function runProcess($commandline) {
180
-		echo sprintf('<info>Running %s</info>', $commandline) . PHP_EOL;
180
+		echo sprintf('<info>Running %s</info>', $commandline).PHP_EOL;
181 181
 		exec($commandline, $output, $return);
182 182
 		if ($return != 0)
183 183
 			throw new \Exception('Returned Error Code '.$return);
Please login to merge, or discard this patch.