@@ -122,7 +122,7 @@ discard block |
||
| 122 | 122 | { |
| 123 | 123 | parent::registerFunctions(); |
| 124 | 124 | $functions = [ |
| 125 | - 'call' => function (array $values, $function) { |
|
| 125 | + 'call' => function(array $values, $function) { |
|
| 126 | 126 | $args = array_slice(func_get_args(), 2); |
| 127 | 127 | if (array_key_exists($function, $this->functions)) { |
| 128 | 128 | array_unshift($args, $values); |
@@ -130,29 +130,29 @@ discard block |
||
| 130 | 130 | } |
| 131 | 131 | return call_user_func_array($function, $args); |
| 132 | 132 | }, |
| 133 | - 'isset' => function (array $values, $var) { |
|
| 133 | + 'isset' => function(array $values, $var) { |
|
| 134 | 134 | return $values[self::VARIABLES_KEY]->has($var); |
| 135 | 135 | }, |
| 136 | - 'empty' => function (array $values, $var) { |
|
| 136 | + 'empty' => function(array $values, $var) { |
|
| 137 | 137 | return !$values[self::VARIABLES_KEY]->has($var) || !$values[self::VARIABLES_KEY]->get($var); |
| 138 | 138 | }, |
| 139 | - 'get' => function (array $values, $var) { |
|
| 139 | + 'get' => function(array $values, $var) { |
|
| 140 | 140 | return $values[self::VARIABLES_KEY]->get($var); |
| 141 | 141 | }, |
| 142 | - 'set' => function (array $values, $var, $value) { |
|
| 142 | + 'set' => function(array $values, $var, $value) { |
|
| 143 | 143 | $values[self::VARIABLES_KEY]->set($var, $value); |
| 144 | 144 | return $value; |
| 145 | 145 | }, |
| 146 | - 'confirm' => function (array $values, $question) { |
|
| 146 | + 'confirm' => function(array $values, $question) { |
|
| 147 | 147 | return $this->ask($values[self::VARIABLES_KEY], new ConfirmationQuestion("<question>$question</question> [y] ")); |
| 148 | 148 | }, |
| 149 | - 'answer' => function (array $values, $question) { |
|
| 149 | + 'answer' => function(array $values, $question) { |
|
| 150 | 150 | return $this->ask($values[self::VARIABLES_KEY], new Question("<question>$question</question> ")); |
| 151 | 151 | }, |
| 152 | - 'choose' => function (array $values, $question) { |
|
| 152 | + 'choose' => function(array $values, $question) { |
|
| 153 | 153 | return $this->ask($values[self::VARIABLES_KEY], new Question("<question>$question</question> ")); |
| 154 | 154 | }, |
| 155 | - 'replace' => function (array $values, $search, $replace, $subject, $regex = false) { |
|
| 155 | + 'replace' => function(array $values, $search, $replace, $subject, $regex = false) { |
|
| 156 | 156 | $values[self::VARIABLES_KEY]->console->output( |
| 157 | 157 | '<warning>Expression language function "replace" is deprecated ' |
| 158 | 158 | . 'and will be removed in 1.6.0 - use preg_replace or str_replace</warning>' |
@@ -167,7 +167,7 @@ discard block |
||
| 167 | 167 | foreach ($functions as $name => $function) { |
| 168 | 168 | $this->register( |
| 169 | 169 | $name, |
| 170 | - function () { |
|
| 170 | + function() { |
|
| 171 | 171 | |
| 172 | 172 | }, |
| 173 | 173 | $function |
@@ -71,12 +71,12 @@ discard block |
||
| 71 | 71 | if (is_string($composerJson)) { |
| 72 | 72 | $path = realpath($composerJson); |
| 73 | 73 | if (!$path) { |
| 74 | - throw new Exception('Could not find ' . $composerJson); |
|
| 74 | + throw new Exception('Could not find '.$composerJson); |
|
| 75 | 75 | } |
| 76 | 76 | $this->path = dirname($path); |
| 77 | 77 | $composerJson = json_decode(file_get_contents($path)); |
| 78 | 78 | if (!is_object($composerJson)) { |
| 79 | - throw new Exception('Could not load ' . $path); |
|
| 79 | + throw new Exception('Could not load '.$path); |
|
| 80 | 80 | } |
| 81 | 81 | } |
| 82 | 82 | foreach (get_object_vars($composerJson) as $key => $value) { |
@@ -97,7 +97,7 @@ discard block |
||
| 97 | 97 | { |
| 98 | 98 | switch ($name) { |
| 99 | 99 | case 'git': |
| 100 | - $gitDir = $this->path . '/.git'; |
|
| 100 | + $gitDir = $this->path.'/.git'; |
|
| 101 | 101 | $this->git = file_exists($gitDir) && is_dir($gitDir); |
| 102 | 102 | break; |
| 103 | 103 | case 'branches': |
@@ -113,7 +113,7 @@ discard block |
||
| 113 | 113 | $this->loadRequires(); |
| 114 | 114 | break; |
| 115 | 115 | default: |
| 116 | - throw new Exception('Invalid property ' . $name); |
|
| 116 | + throw new Exception('Invalid property '.$name); |
|
| 117 | 117 | |
| 118 | 118 | } |
| 119 | 119 | return $this->$name; |
@@ -157,7 +157,7 @@ discard block |
||
| 157 | 157 | */ |
| 158 | 158 | public function reloadRequires() |
| 159 | 159 | { |
| 160 | - $file = $this->path . '/composer.json'; |
|
| 160 | + $file = $this->path.'/composer.json'; |
|
| 161 | 161 | if (file_exists($file)) { |
| 162 | 162 | $composerJson = json_decode(file_get_contents($file)); |
| 163 | 163 | unset($this->require); |
@@ -212,7 +212,7 @@ discard block |
||
| 212 | 212 | if ($this->git) { |
| 213 | 213 | $this->composer->git('fetch', $this->path, array('p' => true, 'origin')); |
| 214 | 214 | try { |
| 215 | - $format = (self::$forEachRefHeadSupported ? '%(HEAD)' : '') . '|%(refname:short)|%(upstream:short)'; |
|
| 215 | + $format = (self::$forEachRefHeadSupported ? '%(HEAD)' : '').'|%(refname:short)|%(upstream:short)'; |
|
| 216 | 216 | $gitBr = $this->composer->git('for-each-ref', $this->path, ['format' => $format, 'refs/heads/', 'refs/remotes/origin']); |
| 217 | 217 | } catch (Exception\ProcessFailedException $e) { |
| 218 | 218 | if (trim($e->getProcess()->getErrorOutput()) === 'fatal: unknown field name: HEAD') { |
@@ -103,7 +103,7 @@ discard block |
||
| 103 | 103 | $this->git('push', $package->path, array('u' => 'origin', $package->branch)); |
| 104 | 104 | $this->console->output( |
| 105 | 105 | str_repeat(chr(8), strlen($package->name)) |
| 106 | - . '<info>' . $package->name . '</info>' |
|
| 106 | + . '<info>'.$package->name.'</info>' |
|
| 107 | 107 | ); |
| 108 | 108 | unset($this->pushPackages[$i]); |
| 109 | 109 | } |
@@ -147,7 +147,7 @@ discard block |
||
| 147 | 147 | $unfixedRequirements = 0; |
| 148 | 148 | while ($packageName = array_shift($checkedOutPackages)) { |
| 149 | 149 | $branch = $packages[$packageName]->branch; |
| 150 | - $version = 'dev-' . $branch; |
|
| 150 | + $version = 'dev-'.$branch; |
|
| 151 | 151 | foreach ($this->getPackages(false, false) as $package) { |
| 152 | 152 | if (array_key_exists($packageName, $package->requires)) { |
| 153 | 153 | // TODO: Set required version to branch alias, if any |
@@ -205,7 +205,7 @@ discard block |
||
| 205 | 205 | $this->assertPackageIsWhiteListed($package); |
| 206 | 206 | |
| 207 | 207 | $currentVersion = $package->requires[$requiredPackage]; |
| 208 | - $composerFile = $package->path . '/composer.json'; |
|
| 208 | + $composerFile = $package->path.'/composer.json'; |
|
| 209 | 209 | $composerFileContents = file_get_contents($composerFile); |
| 210 | 210 | $newComposerFileContents = preg_replace( |
| 211 | 211 | sprintf( |
@@ -213,7 +213,7 @@ discard block |
||
| 213 | 213 | preg_quote($requiredPackage, '/'), |
| 214 | 214 | preg_quote($currentVersion, '/') |
| 215 | 215 | ), |
| 216 | - '$1' . $newVersion, |
|
| 216 | + '$1'.$newVersion, |
|
| 217 | 217 | $composerFileContents |
| 218 | 218 | ); |
| 219 | 219 | file_put_contents($composerFile, $newComposerFileContents); |
@@ -272,7 +272,7 @@ discard block |
||
| 272 | 272 | if (!$package->git) { |
| 273 | 273 | throw new Exception('Non git package can not be checked out'); |
| 274 | 274 | } |
| 275 | - $remoteBranch = 'origin/' . $branch; |
|
| 275 | + $remoteBranch = 'origin/'.$branch; |
|
| 276 | 276 | $isRemote = in_array($remoteBranch, $package->branches, true); |
| 277 | 277 | if (in_array($branch, $package->branches, true)) { |
| 278 | 278 | $this->git('checkout', $package->path, $branch); |
@@ -281,7 +281,7 @@ discard block |
||
| 281 | 281 | } elseif ($create) { |
| 282 | 282 | $branches = array_unique( |
| 283 | 283 | array_map( |
| 284 | - function ($el) { |
|
| 284 | + function($el) { |
|
| 285 | 285 | $parts = explode('/', $el); |
| 286 | 286 | return array_pop($parts); |
| 287 | 287 | }, |
@@ -313,7 +313,7 @@ discard block |
||
| 313 | 313 | $this->console->output("Checked out <comment>{$package->name}</comment> at <comment>$branch</comment>"); |
| 314 | 314 | |
| 315 | 315 | $this->reloadRequires($package); |
| 316 | - $package->version = 'dev-' . $branch; |
|
| 316 | + $package->version = 'dev-'.$branch; |
|
| 317 | 317 | $package->branch = $branch; |
| 318 | 318 | |
| 319 | 319 | return true; |
@@ -337,7 +337,7 @@ discard block |
||
| 337 | 337 | throw new Exception('Non git package can not be merged'); |
| 338 | 338 | } |
| 339 | 339 | |
| 340 | - $this->git('fetch', $package->path, array('force' => true, 'origin', $branch . ':' . $branch)); |
|
| 340 | + $this->git('fetch', $package->path, array('force' => true, 'origin', $branch.':'.$branch)); |
|
| 341 | 341 | |
| 342 | 342 | $ff = $branch == 'master' ? 'ff' : 'no-ff'; |
| 343 | 343 | $optArg = array($ff => true, 'no-commit' => true); |
@@ -371,7 +371,7 @@ discard block |
||
| 371 | 371 | if (!$message) { |
| 372 | 372 | $message = $this->answer( |
| 373 | 373 | 'Enter commit message:', |
| 374 | - 'Merged ' . $branch . ' into ' . $package->branch |
|
| 374 | + 'Merged '.$branch.' into '.$package->branch |
|
| 375 | 375 | ); |
| 376 | 376 | } |
| 377 | 377 | $this->git('commit', $package->path, array('n' => true, 'm' => $message)); |
@@ -392,7 +392,7 @@ discard block |
||
| 392 | 392 | */ |
| 393 | 393 | private function resolveRequirementsConflict($package) |
| 394 | 394 | { |
| 395 | - $contents = file_get_contents($package->path . '/composer.json'); |
|
| 395 | + $contents = file_get_contents($package->path.'/composer.json'); |
|
| 396 | 396 | $ours = @json_decode( |
| 397 | 397 | preg_replace('/^<{7}.+\n(.+)\n(\|{7}|={7}).+>{7}.+$/smU', '$1', $contents) |
| 398 | 398 | ); |
@@ -413,7 +413,7 @@ discard block |
||
| 413 | 413 | } |
| 414 | 414 | |
| 415 | 415 | $theirs['require'] = $this->mergeRequirements($package, $ours, $theirs); |
| 416 | - file_put_contents($package->path . '/composer.json', $this->jsonEncode($theirs)); |
|
| 416 | + file_put_contents($package->path.'/composer.json', $this->jsonEncode($theirs)); |
|
| 417 | 417 | } |
| 418 | 418 | |
| 419 | 419 | /** |
@@ -427,7 +427,7 @@ discard block |
||
| 427 | 427 | { |
| 428 | 428 | return json_encode( |
| 429 | 429 | $var, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE |
| 430 | - ) . "\n"; |
|
| 430 | + )."\n"; |
|
| 431 | 431 | } |
| 432 | 432 | |
| 433 | 433 | /** |
@@ -445,7 +445,7 @@ discard block |
||
| 445 | 445 | $theirsRequire = isset($theirs['require']) && is_object($theirs['require']) ? get_object_vars($theirs['require']) : []; |
| 446 | 446 | $mergedRequires = array_merge($oursRequire, $theirsRequire); |
| 447 | 447 | $packages = $this->getPackages(false, false); |
| 448 | - $preferredVersion = 'dev-' . $package->branch; |
|
| 448 | + $preferredVersion = 'dev-'.$package->branch; |
|
| 449 | 449 | foreach ($mergedRequires as $packageName => $version) { |
| 450 | 450 | $actualVersion = ($version === '@dev') ? 'dev-master' : $version; |
| 451 | 451 | if (array_key_exists($packageName, $oursRequire) |
@@ -537,9 +537,9 @@ discard block |
||
| 537 | 537 | if (!is_array($this->whitelists)) { |
| 538 | 538 | $this->whitelists = []; |
| 539 | 539 | foreach (['path', 'remote', 'name'] as $whiteListType) { |
| 540 | - $option = $this->get('whitelist' . ucfirst($whiteListType) . 's'); |
|
| 540 | + $option = $this->get('whitelist'.ucfirst($whiteListType).'s'); |
|
| 541 | 541 | if ($option) { |
| 542 | - $this->whitelists[$whiteListType] = '#^' . $option . '$#'; |
|
| 542 | + $this->whitelists[$whiteListType] = '#^'.$option.'$#'; |
|
| 543 | 543 | } |
| 544 | 544 | } |
| 545 | 545 | } |