@@ -69,7 +69,7 @@ |
||
| 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 | '' |
@@ -65,7 +65,7 @@ |
||
| 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 | '' |
@@ -74,7 +74,7 @@ |
||
| 74 | 74 | */ |
| 75 | 75 | protected function execute(InputInterface $input, OutputInterface $output) |
| 76 | 76 | { |
| 77 | - $output->writeln([ // outputs multiple lines to the console (adding "\n" at the end of each line) |
|
| 77 | + $output->writeln([// outputs multiple lines to the console (adding "\n" at the end of each line) |
|
| 78 | 78 | 'User Creator', |
| 79 | 79 | '============', |
| 80 | 80 | '' |
@@ -62,7 +62,7 @@ |
||
| 62 | 62 | */ |
| 63 | 63 | protected function execute(InputInterface $input, OutputInterface $output) |
| 64 | 64 | { |
| 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 | 'User Creator', |
| 67 | 67 | '============', |
| 68 | 68 | '' |
@@ -43,7 +43,7 @@ |
||
| 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; |
@@ -157,13 +157,13 @@ |
||
| 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 | /** |