@@ -72,7 +72,7 @@ |
||
| 72 | 72 | if (!is_dir($dir)) { |
| 73 | 73 | throw new Exception("Debug dir $dir doesn't exist"); |
| 74 | 74 | } |
| 75 | - $files = glob($dir . '/*'); |
|
| 75 | + $files = glob($dir.'/*'); |
|
| 76 | 76 | if ($input->getOption('list')) { |
| 77 | 77 | foreach ($files as $file) { |
| 78 | 78 | $output->writeln(basename($file)); |
@@ -32,7 +32,7 @@ discard block |
||
| 32 | 32 | ], |
| 33 | 33 | [ |
| 34 | 34 | 'type' => 'shell', |
| 35 | - 'command' => '{config["php"]} ' . __DIR__ . '/typo3/clear-cache.php', |
|
| 35 | + 'command' => '{config["php"]} '.__DIR__.'/typo3/clear-cache.php', |
|
| 36 | 36 | 'processSettings' => ['pt' => true] |
| 37 | 37 | ], |
| 38 | 38 | [ |
@@ -53,7 +53,7 @@ discard block |
||
| 53 | 53 | ['workflow' => 'clearCodeCaches'], |
| 54 | 54 | [ |
| 55 | 55 | 'type' => 'scp', |
| 56 | - 'from' => __DIR__ . '/typo3', |
|
| 56 | + 'from' => __DIR__.'/typo3', |
|
| 57 | 57 | 'to' => '{node}:{node.deployPath}/current/{config["workspace"]}/typo3' |
| 58 | 58 | ], |
| 59 | 59 | [ |
@@ -11,7 +11,7 @@ discard block |
||
| 11 | 11 | * @link http://www.netresearch.de |
| 12 | 12 | */ |
| 13 | 13 | |
| 14 | -require_once __DIR__ . '/bootstrap.php'; |
|
| 14 | +require_once __DIR__.'/bootstrap.php'; |
|
| 15 | 15 | |
| 16 | 16 | use TYPO3\CMS\Core\Utility\GeneralUtility; |
| 17 | 17 | |
@@ -41,7 +41,7 @@ discard block |
||
| 41 | 41 | if ($execute) { |
| 42 | 42 | $GLOBALS['TYPO3_DB']->admin_query($query); |
| 43 | 43 | if ($GLOBALS['TYPO3_DB']->sql_error()) { |
| 44 | - throw new \Exception('SQL-Error: ' . $GLOBALS['TYPO3_DB']->sql_error()); |
|
| 44 | + throw new \Exception('SQL-Error: '.$GLOBALS['TYPO3_DB']->sql_error()); |
|
| 45 | 45 | } |
| 46 | 46 | } |
| 47 | 47 | } |
@@ -12,7 +12,7 @@ |
||
| 12 | 12 | * @link http://www.netresearch.de |
| 13 | 13 | */ |
| 14 | 14 | |
| 15 | -require __DIR__ . '/bootstrap.php'; |
|
| 15 | +require __DIR__.'/bootstrap.php'; |
|
| 16 | 16 | |
| 17 | 17 | $dataHandler = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance('TYPO3\CMS\Core\DataHandling\DataHandler'); |
| 18 | 18 | $dataHandler->stripslashes_values = 0; |
@@ -21,7 +21,7 @@ discard block |
||
| 21 | 21 | die('Access denied'); |
| 22 | 22 | } |
| 23 | 23 | |
| 24 | -define('PATH_site', getcwd() . DIRECTORY_SEPARATOR); |
|
| 24 | +define('PATH_site', getcwd().DIRECTORY_SEPARATOR); |
|
| 25 | 25 | |
| 26 | 26 | $typo3VersionIsMinimum7 = true; |
| 27 | 27 | |
@@ -33,7 +33,7 @@ discard block |
||
| 33 | 33 | } |
| 34 | 34 | |
| 35 | 35 | if ($typo3VersionIsMinimum7) { |
| 36 | - $classLoader = include getcwd() . '/typo3_src/vendor/autoload.php'; |
|
| 36 | + $classLoader = include getcwd().'/typo3_src/vendor/autoload.php'; |
|
| 37 | 37 | \TYPO3\CMS\Core\Core\Bootstrap::getInstance() |
| 38 | 38 | ->initializeClassLoader($classLoader) |
| 39 | 39 | ->baseSetup(PATH_site) |
@@ -14,8 +14,6 @@ |
||
| 14 | 14 | |
| 15 | 15 | namespace Netresearch\Kite\ExpressionLanguage; |
| 16 | 16 | use Netresearch\Kite\Task; |
| 17 | - |
|
| 18 | -use Symfony\Component\Console\Question\ChoiceQuestion; |
|
| 19 | 17 | use Symfony\Component\Console\Question\ConfirmationQuestion; |
| 20 | 18 | use Symfony\Component\Console\Question\Question; |
| 21 | 19 | use Symfony\Component\ExpressionLanguage\ParserCache\ParserCacheInterface; |
@@ -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 |
@@ -147,7 +147,7 @@ discard block |
||
| 147 | 147 | if ($requiredVersion !== $version) { |
| 148 | 148 | $this->assertPackageAllowed($package); |
| 149 | 149 | if (!$package->git) { |
| 150 | - throw new Exception("Package {$package->name} required to be installed from source"); |
|
| 150 | + throw new Exception("package {$package->name} required to be installed from source"); |
|
| 151 | 151 | } |
| 152 | 152 | if ($autoFix) { |
| 153 | 153 | $fix = true; |
@@ -483,7 +483,7 @@ discard block |
||
| 483 | 483 | protected function assertPackageAllowed($package) |
| 484 | 484 | { |
| 485 | 485 | if (!$this->isPackageAllowed($package)) { |
| 486 | - throw new Exception("Package {$package->name} is not in white list"); |
|
| 486 | + throw new Exception("package {$package->name} is not in white list"); |
|
| 487 | 487 | } |
| 488 | 488 | } |
| 489 | 489 | |
@@ -92,7 +92,7 @@ discard block |
||
| 92 | 92 | $this->git('push', $package->path, array('u' => 'origin', $package->branch)); |
| 93 | 93 | $this->console->output( |
| 94 | 94 | str_repeat(chr(8), strlen($package->name)) |
| 95 | - . '<info>' . $package->name . '</info>' |
|
| 95 | + . '<info>'.$package->name.'</info>' |
|
| 96 | 96 | ); |
| 97 | 97 | unset($this->pushPackages[$i]); |
| 98 | 98 | } |
@@ -136,7 +136,7 @@ discard block |
||
| 136 | 136 | $unfixedRequirements = 0; |
| 137 | 137 | while ($packageName = array_shift($checkedOutPackages)) { |
| 138 | 138 | $branch = $packages[$packageName]->branch; |
| 139 | - $version = 'dev-' . $branch; |
|
| 139 | + $version = 'dev-'.$branch; |
|
| 140 | 140 | foreach ($this->getPackages(false, false) as $package) { |
| 141 | 141 | if (array_key_exists($packageName, $package->requires)) { |
| 142 | 142 | // TODO: Set required version to branch alias, if any |
@@ -194,7 +194,7 @@ discard block |
||
| 194 | 194 | $this->assertPackageAllowed($package); |
| 195 | 195 | |
| 196 | 196 | $currentVersion = $package->requires[$requiredPackage]; |
| 197 | - $composerFile = $package->path . '/composer.json'; |
|
| 197 | + $composerFile = $package->path.'/composer.json'; |
|
| 198 | 198 | $composerFileContents = file_get_contents($composerFile); |
| 199 | 199 | $newComposerFileContents = preg_replace( |
| 200 | 200 | sprintf( |
@@ -202,7 +202,7 @@ discard block |
||
| 202 | 202 | preg_quote($requiredPackage, '/'), |
| 203 | 203 | preg_quote($currentVersion, '/') |
| 204 | 204 | ), |
| 205 | - '$1' . $newVersion, |
|
| 205 | + '$1'.$newVersion, |
|
| 206 | 206 | $composerFileContents |
| 207 | 207 | ); |
| 208 | 208 | file_put_contents($composerFile, $newComposerFileContents); |
@@ -261,7 +261,7 @@ discard block |
||
| 261 | 261 | if (!$package->git) { |
| 262 | 262 | throw new Exception('Non git package can not be checked out'); |
| 263 | 263 | } |
| 264 | - $remoteBranch = 'origin/' . $branch; |
|
| 264 | + $remoteBranch = 'origin/'.$branch; |
|
| 265 | 265 | $isRemote = in_array($remoteBranch, $package->branches, true); |
| 266 | 266 | if (in_array($branch, $package->branches, true)) { |
| 267 | 267 | $this->git('checkout', $package->path, $branch); |
@@ -270,7 +270,7 @@ discard block |
||
| 270 | 270 | } elseif ($create) { |
| 271 | 271 | $branches = array_unique( |
| 272 | 272 | array_map( |
| 273 | - function ($el) { |
|
| 273 | + function($el) { |
|
| 274 | 274 | $parts = explode('/', $el); |
| 275 | 275 | return array_pop($parts); |
| 276 | 276 | }, |
@@ -302,7 +302,7 @@ discard block |
||
| 302 | 302 | $this->console->output("Checked out <comment>{$package->name}</comment> at <comment>$branch</comment>"); |
| 303 | 303 | |
| 304 | 304 | $this->reloadRequires($package); |
| 305 | - $package->version = 'dev-' . $branch; |
|
| 305 | + $package->version = 'dev-'.$branch; |
|
| 306 | 306 | $package->branch = $branch; |
| 307 | 307 | |
| 308 | 308 | return true; |
@@ -326,7 +326,7 @@ discard block |
||
| 326 | 326 | throw new Exception('Non git package can not be merged'); |
| 327 | 327 | } |
| 328 | 328 | |
| 329 | - $this->git('fetch', $package->path, array('force' => true, 'origin', $branch . ':' . $branch)); |
|
| 329 | + $this->git('fetch', $package->path, array('force' => true, 'origin', $branch.':'.$branch)); |
|
| 330 | 330 | |
| 331 | 331 | $ff = $branch == 'master' ? 'ff' : 'no-ff'; |
| 332 | 332 | $optArg = array($ff => true, 'no-commit' => true); |
@@ -360,7 +360,7 @@ discard block |
||
| 360 | 360 | if (!$message) { |
| 361 | 361 | $message = $this->answer( |
| 362 | 362 | 'Enter commit message:', |
| 363 | - 'Merged ' . $branch . ' into ' . $package->branch |
|
| 363 | + 'Merged '.$branch.' into '.$package->branch |
|
| 364 | 364 | ); |
| 365 | 365 | } |
| 366 | 366 | $this->git('commit', $package->path, array('n' => true, 'm' => $message)); |
@@ -381,7 +381,7 @@ discard block |
||
| 381 | 381 | */ |
| 382 | 382 | private function resolveRequirementsConflict($package) |
| 383 | 383 | { |
| 384 | - $contents = file_get_contents($package->path . '/composer.json'); |
|
| 384 | + $contents = file_get_contents($package->path.'/composer.json'); |
|
| 385 | 385 | $ours = @json_decode( |
| 386 | 386 | preg_replace('/^<{7}.+\n(.+)\n(\|{7}|={7}).+>{7}.+$/smU', '$1', $contents) |
| 387 | 387 | ); |
@@ -402,7 +402,7 @@ discard block |
||
| 402 | 402 | } |
| 403 | 403 | |
| 404 | 404 | $theirs['require'] = $this->mergeRequirements($package, $ours, $theirs); |
| 405 | - file_put_contents($package->path . '/composer.json', $this->jsonEncode($theirs)); |
|
| 405 | + file_put_contents($package->path.'/composer.json', $this->jsonEncode($theirs)); |
|
| 406 | 406 | } |
| 407 | 407 | |
| 408 | 408 | /** |
@@ -416,7 +416,7 @@ discard block |
||
| 416 | 416 | { |
| 417 | 417 | return json_encode( |
| 418 | 418 | $var, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE |
| 419 | - ) . "\n"; |
|
| 419 | + )."\n"; |
|
| 420 | 420 | } |
| 421 | 421 | |
| 422 | 422 | /** |
@@ -434,7 +434,7 @@ discard block |
||
| 434 | 434 | $theirsRequire = isset($theirs['require']) && is_object($theirs['require']) ? get_object_vars($theirs['require']) : []; |
| 435 | 435 | $mergedRequires = array_merge($oursRequire, $theirsRequire); |
| 436 | 436 | $packages = $this->getPackages(false, false); |
| 437 | - $preferredVersion = 'dev-' . $package->branch; |
|
| 437 | + $preferredVersion = 'dev-'.$package->branch; |
|
| 438 | 438 | foreach ($mergedRequires as $packageName => $version) { |
| 439 | 439 | $actualVersion = ($version === '@dev') ? 'dev-master' : $version; |
| 440 | 440 | if (array_key_exists($packageName, $oursRequire) |
@@ -500,9 +500,9 @@ discard block |
||
| 500 | 500 | if (!is_array($this->whitelists)) { |
| 501 | 501 | $this->whitelists = []; |
| 502 | 502 | foreach ($whitelistTypes as $whitelistType) { |
| 503 | - $option = $this->get('whitelist' . ucfirst($whitelistType) . 's'); |
|
| 503 | + $option = $this->get('whitelist'.ucfirst($whitelistType).'s'); |
|
| 504 | 504 | if ($option) { |
| 505 | - $this->whitelists[$whitelistType] = '#^' . $option . '$#'; |
|
| 505 | + $this->whitelists[$whitelistType] = '#^'.$option.'$#'; |
|
| 506 | 506 | } |
| 507 | 507 | } |
| 508 | 508 | } |
@@ -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') { |