Test Failed
Push — master ( 128efd...b9b7d0 )
by Joe
21:54 queued 03:07
created
src/Command/Parse.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@
 block discarded – undo
69 69
 	 */
70 70
 	protected function execute(InputInterface $input, OutputInterface $output)
71 71
 	{
72
-		$output->writeln([ // outputs multiple lines to the console (adding "\n" at the end of each line)
72
+		$output->writeln([// outputs multiple lines to the console (adding "\n" at the end of each line)
73 73
 			'MyAdmin DocBlock Parser',
74 74
 			'=======================',
75 75
 			''
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
@@ -65,7 +65,7 @@
 block discarded – undo
65 65
 	 */
66 66
 	protected function execute(InputInterface $input, OutputInterface $output)
67 67
 	{
68
-		$output->writeln([ // outputs multiple lines to the console (adding "\n" at the end of each line)
68
+		$output->writeln([// outputs multiple lines to the console (adding "\n" at the end of each line)
69 69
 			'User Creator',
70 70
 			'============',
71 71
 			''
Please login to merge, or discard this patch.
src/Loader.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
 		if ($include_admin === true) {
44 44
 			$routes = array_merge($this->admin_routes, $routes);
45 45
 		}
46
-		uksort($routes, function ($a, $b) {
46
+		uksort($routes, function($a, $b) {
47 47
 			if (strlen($a) == strlen($b)) {
48 48
 				if ($a == $b) {
49 49
 					return 0;
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
@@ -157,13 +157,13 @@
 block discarded – undo
157 157
 	{
158 158
 		if ($this->type == 'myadmin-template') {
159 159
 			$this->initializeTemplateDir();
160
-			$basePath = ($this->templateDir ? $this->templateDir.'/' : '') . $package->getPrettyName();
160
+			$basePath = ($this->templateDir ? $this->templateDir.'/' : '').$package->getPrettyName();
161 161
 		} else {
162 162
 			$this->initializeVendorDir();
163
-			$basePath = ($this->vendorDir ? $this->vendorDir.'/' : '') . $package->getPrettyName();
163
+			$basePath = ($this->vendorDir ? $this->vendorDir.'/' : '').$package->getPrettyName();
164 164
 		}
165 165
 		$targetDir = $package->getTargetDir();
166
-		return $basePath . ($targetDir ? '/'.$targetDir : '');
166
+		return $basePath.($targetDir ? '/'.$targetDir : '');
167 167
 	}
168 168
 
169 169
 	/**
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
@@ -65,7 +65,7 @@
 block discarded – undo
65 65
 	 */
66 66
 	protected function execute(InputInterface $input, OutputInterface $output)
67 67
 	{
68
-		$output->writeln([ // outputs multiple lines to the console (adding "\n" at the end of each line)
68
+		$output->writeln([// outputs multiple lines to the console (adding "\n" at the end of each line)
69 69
 			'User Creator',
70 70
 			'============',
71 71
 			''
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
@@ -65,7 +65,7 @@
 block discarded – undo
65 65
 	 */
66 66
 	protected function execute(InputInterface $input, OutputInterface $output)
67 67
 	{
68
-		$output->writeln([ // outputs multiple lines to the console (adding "\n" at the end of each line)
68
+		$output->writeln([// outputs multiple lines to the console (adding "\n" at the end of each line)
69 69
 			'User Creator',
70 70
 			'============',
71 71
 			''
Please login to merge, or discard this patch.