@@ -66,7 +66,7 @@ |
||
| 66 | 66 | public function assemble() |
| 67 | 67 | { |
| 68 | 68 | $this->callback( |
| 69 | - function () { |
|
| 69 | + function() { |
|
| 70 | 70 | $this->checkoutPackages( |
| 71 | 71 | (array) $this->get('branch'), |
| 72 | 72 | $this->get('merge'), |
@@ -272,7 +272,7 @@ |
||
| 272 | 272 | } elseif ($create) { |
| 273 | 273 | $branches = array_unique( |
| 274 | 274 | array_map( |
| 275 | - function ($el) { |
|
| 275 | + function($el) { |
|
| 276 | 276 | $parts = explode('/', $el); |
| 277 | 277 | return array_pop($parts); |
| 278 | 278 | }, |
@@ -1,16 +1,16 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * See class comment |
|
| 4 | - * |
|
| 5 | - * PHP Version 5 |
|
| 6 | - * |
|
| 7 | - * @category Netresearch |
|
| 8 | - * @package Netresearch\Kite\Workflow |
|
| 9 | - * @subpackage Git |
|
| 10 | - * @author Christian Opitz <[email protected]> |
|
| 11 | - * @license http://www.netresearch.de Netresearch Copyright |
|
| 12 | - * @link http://www.netresearch.de |
|
| 13 | - */ |
|
| 3 | + * See class comment |
|
| 4 | + * |
|
| 5 | + * PHP Version 5 |
|
| 6 | + * |
|
| 7 | + * @category Netresearch |
|
| 8 | + * @package Netresearch\Kite\Workflow |
|
| 9 | + * @subpackage Git |
|
| 10 | + * @author Christian Opitz <[email protected]> |
|
| 11 | + * @license http://www.netresearch.de Netresearch Copyright |
|
| 12 | + * @link http://www.netresearch.de |
|
| 13 | + */ |
|
| 14 | 14 | |
| 15 | 15 | namespace Netresearch\Kite\Workflow\Git; |
| 16 | 16 | use Netresearch\Kite\Workflow; |
@@ -1,15 +1,15 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * See class comment |
|
| 4 | - * |
|
| 5 | - * PHP Version 5 |
|
| 6 | - * |
|
| 7 | - * @category Netresearch |
|
| 8 | - * @package Netresearch\Kite\Workflow |
|
| 9 | - * @author Christian Opitz <[email protected]> |
|
| 10 | - * @license http://www.netresearch.de Netresearch Copyright |
|
| 11 | - * @link http://www.netresearch.de |
|
| 12 | - */ |
|
| 3 | + * See class comment |
|
| 4 | + * |
|
| 5 | + * PHP Version 5 |
|
| 6 | + * |
|
| 7 | + * @category Netresearch |
|
| 8 | + * @package Netresearch\Kite\Workflow |
|
| 9 | + * @author Christian Opitz <[email protected]> |
|
| 10 | + * @license http://www.netresearch.de Netresearch Copyright |
|
| 11 | + * @link http://www.netresearch.de |
|
| 12 | + */ |
|
| 13 | 13 | |
| 14 | 14 | namespace Netresearch\Kite\Workflow; |
| 15 | 15 | use Netresearch\Kite\Exception; |
@@ -60,7 +60,7 @@ |
||
| 60 | 60 | public function assemble() |
| 61 | 61 | { |
| 62 | 62 | $this->callback( |
| 63 | - function () { |
|
| 63 | + function() { |
|
| 64 | 64 | $this->findLoaders(); |
| 65 | 65 | $file = $this->get('file'); |
| 66 | 66 | $this->console->getFilesystem()->ensureDirectoryExists(dirname($file)); |
@@ -1,16 +1,16 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * See class comment |
|
| 4 | - * |
|
| 5 | - * PHP Version 5 |
|
| 6 | - * |
|
| 7 | - * @category Netresearch |
|
| 8 | - * @package Netresearch\Kite |
|
| 9 | - * @subpackage ExpressionLanguage |
|
| 10 | - * @author Christian Opitz <[email protected]> |
|
| 11 | - * @license http://www.netresearch.de Netresearch Copyright |
|
| 12 | - * @link http://www.netresearch.de |
|
| 13 | - */ |
|
| 3 | + * See class comment |
|
| 4 | + * |
|
| 5 | + * PHP Version 5 |
|
| 6 | + * |
|
| 7 | + * @category Netresearch |
|
| 8 | + * @package Netresearch\Kite |
|
| 9 | + * @subpackage ExpressionLanguage |
|
| 10 | + * @author Christian Opitz <[email protected]> |
|
| 11 | + * @license http://www.netresearch.de Netresearch Copyright |
|
| 12 | + * @link http://www.netresearch.de |
|
| 13 | + */ |
|
| 14 | 14 | |
| 15 | 15 | namespace Netresearch\Kite\ExpressionLanguage; |
| 16 | 16 | use Symfony\Component\ExpressionLanguage\SyntaxError; |
@@ -172,10 +172,10 @@ |
||
| 172 | 172 | } |
| 173 | 173 | if ($isTest) { |
| 174 | 174 | if ($isFunctionCall) { |
| 175 | - throw new SyntaxError('Can\'t use function return value in write context', $stream->current->cursor); |
|
| 175 | + throw new SyntaxError('Can\'t use function return value in write context', $stream->current->cursor); |
|
| 176 | 176 | } |
| 177 | 177 | if (!$stream->current->test(Token::PUNCTUATION_TYPE, ')')) { |
| 178 | - throw new SyntaxError('Expected )', $stream->current->cursor); |
|
| 178 | + throw new SyntaxError('Expected )', $stream->current->cursor); |
|
| 179 | 179 | } |
| 180 | 180 | $tokens[] = new Token(Token::STRING_TYPE, implode('.', $names), $token->cursor); |
| 181 | 181 | } else { |
@@ -1,15 +1,15 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * See class comment |
|
| 4 | - * |
|
| 5 | - * PHP Version 5 |
|
| 6 | - * |
|
| 7 | - * @category Netresearch |
|
| 8 | - * @package Netresearch\Kite |
|
| 9 | - * @author Christian Opitz <[email protected]> |
|
| 10 | - * @license http://www.netresearch.de Netresearch Copyright |
|
| 11 | - * @link http://www.netresearch.de |
|
| 12 | - */ |
|
| 3 | + * See class comment |
|
| 4 | + * |
|
| 5 | + * PHP Version 5 |
|
| 6 | + * |
|
| 7 | + * @category Netresearch |
|
| 8 | + * @package Netresearch\Kite |
|
| 9 | + * @author Christian Opitz <[email protected]> |
|
| 10 | + * @license http://www.netresearch.de Netresearch Copyright |
|
| 11 | + * @link http://www.netresearch.de |
|
| 12 | + */ |
|
| 13 | 13 | |
| 14 | 14 | namespace Netresearch\Kite; |
| 15 | 15 | |
@@ -1,16 +1,16 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * See class comment |
|
| 4 | - * |
|
| 5 | - * PHP Version 5 |
|
| 6 | - * |
|
| 7 | - * @category Netresearch |
|
| 8 | - * @package Netresearch\Kite |
|
| 9 | - * @subpackage Exception |
|
| 10 | - * @author Christian Opitz <[email protected]> |
|
| 11 | - * @license http://www.netresearch.de Netresearch Copyright |
|
| 12 | - * @link http://www.netresearch.de |
|
| 13 | - */ |
|
| 3 | + * See class comment |
|
| 4 | + * |
|
| 5 | + * PHP Version 5 |
|
| 6 | + * |
|
| 7 | + * @category Netresearch |
|
| 8 | + * @package Netresearch\Kite |
|
| 9 | + * @subpackage Exception |
|
| 10 | + * @author Christian Opitz <[email protected]> |
|
| 11 | + * @license http://www.netresearch.de Netresearch Copyright |
|
| 12 | + * @link http://www.netresearch.de |
|
| 13 | + */ |
|
| 14 | 14 | |
| 15 | 15 | namespace Netresearch\Kite; |
| 16 | 16 | |
@@ -43,7 +43,7 @@ |
||
| 43 | 43 | } |
| 44 | 44 | |
| 45 | 45 | $error = sprintf( |
| 46 | - 'The command "%s" failed.'."\n\nExit Code: %s(%s)\n\nWorking directory: %s", |
|
| 46 | + 'The command "%s" failed.' . "\n\nExit Code: %s(%s)\n\nWorking directory: %s", |
|
| 47 | 47 | $process->getCommandLine(), |
| 48 | 48 | $process->getExitCode(), |
| 49 | 49 | $process->getExitCodeText(), |
@@ -1,16 +1,16 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * See class comment |
|
| 4 | - * |
|
| 5 | - * PHP Version 5 |
|
| 6 | - * |
|
| 7 | - * @category Netresearch |
|
| 8 | - * @package Netresearch\Kite |
|
| 9 | - * @subpackage Task |
|
| 10 | - * @author Christian Opitz <[email protected]> |
|
| 11 | - * @license http://www.netresearch.de Netresearch Copyright |
|
| 12 | - * @link http://www.netresearch.de |
|
| 13 | - */ |
|
| 3 | + * See class comment |
|
| 4 | + * |
|
| 5 | + * PHP Version 5 |
|
| 6 | + * |
|
| 7 | + * @category Netresearch |
|
| 8 | + * @package Netresearch\Kite |
|
| 9 | + * @subpackage Task |
|
| 10 | + * @author Christian Opitz <[email protected]> |
|
| 11 | + * @license http://www.netresearch.de Netresearch Copyright |
|
| 12 | + * @link http://www.netresearch.de |
|
| 13 | + */ |
|
| 14 | 14 | |
| 15 | 15 | namespace Netresearch\Kite\Task; |
| 16 | 16 | use Netresearch\Kite\Exception; |