GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — master ( a39841...23e3c6 )
by
unknown
02:58
created
src/Console/Application.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,6 @@
 block discarded – undo
19 19
 use Netresearch\Kite\Exception;
20 20
 use Netresearch\Kite\Service\Config;
21 21
 use Netresearch\Kite\Console\Command\JobCommand;
22
-use Netresearch\Kite\Service\Factory;
23 22
 use Symfony\Component\Console\Command\Command;
24 23
 use Symfony\Component\Console\Input\InputInterface;
25 24
 use Symfony\Component\Console\Input\InputOption;
Please login to merge, or discard this patch.
Spacing   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
             list($dir, $file) = $dirAndFile;
81 81
             if (is_dir($dir)) {
82 82
                 $app = $appName;
83
-                $expectedFile = $dir . '/' . $file;
83
+                $expectedFile = $dir.'/'.$file;
84 84
                 break;
85 85
             }
86 86
         }
@@ -90,9 +90,9 @@  discard block
 block discarded – undo
90 90
         } catch (\Exception $e) {
91 91
             if ($app) {
92 92
                 $message = [
93
-                    'You appear to be in a ' . $app . ' root directory but',
93
+                    'You appear to be in a '.$app.' root directory but',
94 94
                     'there is no kite config file at the expected',
95
-                    'location (' . $expectedFile . ').'
95
+                    'location ('.$expectedFile.').'
96 96
                 ];
97 97
             } else {
98 98
                 $message = [
@@ -102,9 +102,9 @@  discard block
 block discarded – undo
102 102
                     'The config file path is expected to be:',
103 103
                 ];
104 104
                 foreach ($indicators as $appName => $dirAndFile) {
105
-                    $message[] = '  - "' . implode('/', $dirAndFile) . '" for ' . $appName . ' applications or';
105
+                    $message[] = '  - "'.implode('/', $dirAndFile).'" for '.$appName.' applications or';
106 106
                 }
107
-                $message[] = '  - "' . $expectedFile . '" for any other application';
107
+                $message[] = '  - "'.$expectedFile.'" for any other application';
108 108
             }
109 109
             $lMax = 0;
110 110
             foreach ($message as $line) {
@@ -112,12 +112,12 @@  discard block
 block discarded – undo
112 112
                     $lMax = $l;
113 113
                 }
114 114
             }
115
-            $this->output->writeln('<warning>' . str_repeat(' ', $lMax + 4) . '</warning>');
115
+            $this->output->writeln('<warning>'.str_repeat(' ', $lMax + 4).'</warning>');
116 116
             foreach ($message as $line) {
117 117
                 $line = str_pad($line, $lMax + 2);
118 118
                 $this->output->writeln("<warning>  $line</warning>");
119 119
             }
120
-            $this->output->writeln('<warning>' . str_repeat(' ', $lMax + 4) . '</warning>');
120
+            $this->output->writeln('<warning>'.str_repeat(' ', $lMax + 4).'</warning>');
121 121
         }
122 122
     }
123 123
 
@@ -134,7 +134,7 @@  discard block
 block discarded – undo
134 134
             . "| ' /| | __/ _ \\\n"
135 135
             . "| . \\| | |_| __/\n"
136 136
             . "|_|\\_|_|\\__\\___|\n\n"
137
-            . $this->getLongVersion() . "\n\n"
137
+            . $this->getLongVersion()."\n\n"
138 138
             . $this->getSelfPackage()->description;
139 139
 
140 140
         return $help;
@@ -152,7 +152,7 @@  discard block
 block discarded – undo
152 152
         if (isset($package->source)) {
153 153
             $v .= " <comment>({$package->source->reference})</comment>";
154 154
         }
155
-        $v .= ' ' . $package->time;
155
+        $v .= ' '.$package->time;
156 156
         return $v;
157 157
     }
158 158
 
@@ -165,7 +165,7 @@  discard block
 block discarded – undo
165 165
     {
166 166
         static $package = null;
167 167
         if (!$package) {
168
-            $files = [__DIR__ . '/../../../../composer/installed.json', __DIR__ . '/vendor/composer/installed.json'];
168
+            $files = [__DIR__.'/../../../../composer/installed.json', __DIR__.'/vendor/composer/installed.json'];
169 169
             foreach ($files as $file) {
170 170
                 if (file_exists($file)) {
171 171
                     $installed = json_decode(file_get_contents($file));
@@ -195,7 +195,7 @@  discard block
 block discarded – undo
195 195
         $definition->addOption(new InputOption('workflow', null, InputOption::VALUE_OPTIONAL, 'Run a workflow on the fly'));
196 196
 
197 197
         if (isset($_SERVER['HOME']) && is_writable($_SERVER['HOME'])) {
198
-            $debugDir = $_SERVER['HOME'] . '/.kite/log';
198
+            $debugDir = $_SERVER['HOME'].'/.kite/log';
199 199
         } else {
200 200
             $debugDir = false;
201 201
         }
@@ -239,19 +239,19 @@  discard block
 block discarded – undo
239 239
                 $strInput .= ' --help';
240 240
             }
241 241
             $workflow = $input->getParameterOption('--workflow');
242
-            $jobName = 'generic:workflow:' . $workflow;
242
+            $jobName = 'generic:workflow:'.$workflow;
243 243
             $this->config->configureJob($jobName, array('workflow' => $workflow));
244 244
             $command = new JobCommand($jobName, $this->config);
245 245
             $this->add($command);
246 246
 
247
-            $parameterOption = '--workflow=' . $workflow;
247
+            $parameterOption = '--workflow='.$workflow;
248 248
             $input = new StringInput(
249 249
                 rtrim(
250
-                    $jobName . ' ' .
250
+                    $jobName.' '.
251 251
                     str_replace(
252 252
                         array(
253
-                            $parameterOption . ' ',
254
-                            ' ' . $parameterOption,
253
+                            $parameterOption.' ',
254
+                            ' '.$parameterOption,
255 255
                             $parameterOption
256 256
                         ), '', $strInput
257 257
                     )
Please login to merge, or discard this patch.
src/Service/Console.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,6 @@
 block discarded – undo
15 15
 namespace Netresearch\Kite\Service;
16 16
 
17 17
 use Netresearch\Kite\Console\Output\Output;
18
-
19 18
 use Symfony\Component\Console\Application;
20 19
 use Symfony\Component\Console\Helper;
21 20
 use Symfony\Component\Console\Input\InputInterface;
Please login to merge, or discard this patch.
src/Task/FsTask.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,6 @@
 block discarded – undo
15 15
 namespace Netresearch\Kite\Task;
16 16
 
17 17
 
18
-use Netresearch\Kite\Exception;
19 18
 use Netresearch\Kite\Task;
20 19
 
21 20
 /**
Please login to merge, or discard this patch.
src/Task/SubTask.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -15,8 +15,6 @@
 block discarded – undo
15 15
 namespace Netresearch\Kite\Task;
16 16
 use Netresearch\Kite\Task;
17 17
 use Netresearch\Kite\Tasks;
18
-use Netresearch\Kite\Workflow;
19
-use Netresearch\Kite\Exception;
20 18
 
21 19
 /**
22 20
  * Run tasks or a workflow within a task
Please login to merge, or discard this patch.
src/Workflow/Composer/Diagnose.php 2 patches
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -12,8 +12,6 @@
 block discarded – undo
12 12
  */
13 13
 
14 14
 namespace Netresearch\Kite\Workflow\Composer;
15
-use Netresearch\Kite\Exception;
16
-
17 15
 use Netresearch\Kite\Workflow;
18 16
 
19 17
 /**
Please login to merge, or discard this patch.
Spacing   +19 added lines, -19 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
             if (substr($method, 0, 5) === 'check' && $method[5] === strtoupper($method[5])) {
59 59
                 $check = substr($method, 5);
60 60
                 $this->checks[] = $check;
61
-                if (method_exists($this, 'fix' . $check)) {
61
+                if (method_exists($this, 'fix'.$check)) {
62 62
                     $this->fixes[] = $check;
63 63
                 }
64 64
             }
@@ -68,12 +68,12 @@  discard block
 block discarded – undo
68 68
             'check' => array(
69 69
                 'type' => 'array',
70 70
                 'option' => true,
71
-                'label' => 'Only execute these checks - available checks are ' . implode(', ', $this->checks),
71
+                'label' => 'Only execute these checks - available checks are '.implode(', ', $this->checks),
72 72
             ),
73 73
             'fix' => array(
74 74
                 'type' => 'boolean|array',
75 75
                 'option' => true,
76
-                'label' => 'Enable fixes and optionally reduce to certain fixes - available fixes are ' . implode(', ', $this->fixes),
76
+                'label' => 'Enable fixes and optionally reduce to certain fixes - available fixes are '.implode(', ', $this->fixes),
77 77
             ),
78 78
         ) + parent::configureVariables();
79 79
     }
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
     public function assemble()
87 87
     {
88 88
         $this->callback(
89
-            function () {
89
+            function() {
90 90
                 $fix = $this->get('fix');
91 91
                 $fixes = ($fix === true) ? $this->fixes : (array) $fix;
92 92
                 $checks = $this->get('check') ?: $this->checks;
@@ -120,11 +120,11 @@  discard block
 block discarded – undo
120 120
             if ($packageNames && !in_array($package->name, $packageNames, true)) {
121 121
                 continue;
122 122
             }
123
-            if (is_string($message = $this->{'check' . $check}($package))) {
123
+            if (is_string($message = $this->{'check'.$check}($package))) {
124 124
                 if (!$packageNames && !$errors) {
125 125
                     $this->console->output(
126 126
                         str_repeat(chr(8), strlen($check))
127
-                        . '<fg=red;bg=black>' . $check . '</>'
127
+                        . '<fg=red;bg=black>'.$check.'</>'
128 128
                     );
129 129
                 }
130 130
                 $message = sprintf($message, "package <comment>$package->name</>");
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
                 if ($fix) {
134 134
                     $this->dontCheckCurrentPackageAgain = false;
135 135
                     $this->console->indent();
136
-                    $this->{'fix' . $check}($package);
136
+                    $this->{'fix'.$check}($package);
137 137
                     $this->console->outdent();
138 138
                     if (!$this->dontCheckCurrentPackageAgain) {
139 139
                         $rerunForPackages[] = $package->name;
@@ -155,7 +155,7 @@  discard block
 block discarded – undo
155 155
             if (!$errors) {
156 156
                 $this->console->output(
157 157
                     str_repeat(chr(8), strlen($check))
158
-                    . '<fg=green;bg=black>' . $check . '</>'
158
+                    . '<fg=green;bg=black>'.$check.'</>'
159 159
                 );
160 160
             }
161 161
             $this->console->outdent();
@@ -212,7 +212,7 @@  discard block
 block discarded – undo
212 212
             $this->git('reset', $package->path);
213 213
             $args = 'save -u';
214 214
             if ($message = $this->answer('Message for stash:')) {
215
-                $args .= ' ' . escapeshellarg($message);
215
+                $args .= ' '.escapeshellarg($message);
216 216
             }
217 217
             $this->git('stash', $package->path, $args);
218 218
             break;
@@ -283,7 +283,7 @@  discard block
 block discarded – undo
283 283
         case 2:
284 284
             foreach ($commands as $command) {
285 285
                 $pck = "<comment>{$package->name}</comment>";
286
-                $this->console->output($msg = ucfirst($command) . "ing $pck...", false);
286
+                $this->console->output($msg = ucfirst($command)."ing $pck...", false);
287 287
                 $this->git($command, $package->path, isset($options) ? $options : null);
288 288
                 $this->console->output(
289 289
                     str_repeat(chr(8), strlen(strip_tags($msg)))
@@ -332,7 +332,7 @@  discard block
 block discarded – undo
332 332
                     }
333 333
                 }
334 334
             }
335
-            $constraint = $package->tag ?: 'dev-' . $package->branch;
335
+            $constraint = $package->tag ?: 'dev-'.$package->branch;
336 336
             if ($package->requiredBranch && $package->requiredBranch !== $package->branch) {
337 337
                 return "%s is at <comment>$constraint</comment> but is required at <comment>dev-{$package->requiredBranch}</comment>";
338 338
             }
@@ -353,8 +353,8 @@  discard block
 block discarded – undo
353 353
         if ($package->invalidRequirements) {
354 354
             $this->doExit('Can not fix that', 1);
355 355
         }
356
-        $currentConstraint = $package->tag ?: 'dev-' . $package->branch;
357
-        $requiredConstraint = 'dev-' . $package->requiredBranch;
356
+        $currentConstraint = $package->tag ?: 'dev-'.$package->branch;
357
+        $requiredConstraint = 'dev-'.$package->requiredBranch;
358 358
         if ($package->requiredBranch) {
359 359
             $actions = array(
360 360
                 1 => "Show divergent commits between <comment>$currentConstraint</comment> and <comment>$requiredConstraint</comment> (and ask again)",
@@ -405,7 +405,7 @@  discard block
 block discarded – undo
405 405
     protected function checkDivergeFromLock($package)
406 406
     {
407 407
         if ($package->git && !$package->isRoot) {
408
-            $constraint = $package->tag ? ltrim($package->tag, 'v') : 'dev-' . $package->branch;
408
+            $constraint = $package->tag ? ltrim($package->tag, 'v') : 'dev-'.$package->branch;
409 409
             if (($package->tag || $package->branch) && $package->version !== $constraint) {
410 410
                 if ($this->git('rev-parse', $package->path, 'HEAD') === $package->source->reference) {
411 411
                     // HEAD is tip of branch and tag - so only branch was detected
@@ -418,9 +418,9 @@  discard block
 block discarded – undo
418 418
             if ($counts[0] || $counts[1]) {
419 419
                 $num = $counts[0] ?: $counts[1];
420 420
                 $type = $counts[0] ? 'behind</>' : 'ahead</> of';
421
-                return '%s is <comment>' . $num . ' commit' . ($num > 1 ? 's ' : ' ')
422
-                    . $type . ' locked commit <comment>'
423
-                    . substr($package->source->reference, 0, 7) . '</>';
421
+                return '%s is <comment>'.$num.' commit'.($num > 1 ? 's ' : ' ')
422
+                    . $type.' locked commit <comment>'
423
+                    . substr($package->source->reference, 0, 7).'</>';
424 424
             }
425 425
         }
426 426
         return null;
@@ -538,12 +538,12 @@  discard block
 block discarded – undo
538 538
             $side = $i ? 'left' : 'right';
539 539
             $otherSide = $i ? 'right' : 'left';
540 540
             $args = "--$side-only --cherry-pick --pretty=format:'%C(yellow)%h %Cgreen%cd %an%Creset%n  %s' --abbrev-commit --date=local ";
541
-            $args .= $ref . '...';
541
+            $args .= $ref.'...';
542 542
             $log = $this->git('log', $package->path, $args, array('shy' => true));
543 543
             if ($log) {
544 544
                 $this->console->output('');
545 545
 
546
-                $title = "<info>{${$side . 'Title'}}</info> > <info>{${$otherSide . 'Title'}}</info>";
546
+                $title = "<info>{${$side.'Title'}}</info> > <info>{${$otherSide.'Title'}}</info>";
547 547
                 $this->output($title);
548 548
                 $this->console->output(str_repeat('-', strlen(strip_tags($title))));
549 549
 
Please login to merge, or discard this patch.
src/Workflow/Composer/Merge.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,6 @@
 block discarded – undo
14 14
 
15 15
 namespace Netresearch\Kite\Workflow\Composer;
16 16
 use Netresearch\Kite\Service\Composer\Package;
17
-use Netresearch\Kite\Task;
18 17
 use Netresearch\Kite\Workflow;
19 18
 
20 19
 
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
     public function assemble()
78 78
     {
79 79
         $this->callback(
80
-            function () {
80
+            function() {
81 81
                 $mergeBranch = $this->get('branch');
82 82
                 $diagnose = !$this->get('no-diagnose');
83 83
                 $delete = $this->get('delete', false);
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
 
101 101
                     if ($delete) {
102 102
                         $this->git('branch', $package->path, array('d' => $mergeBranch));
103
-                        $this->git('push', $package->path, array('origin', ':' . $mergeBranch));
103
+                        $this->git('push', $package->path, array('origin', ':'.$mergeBranch));
104 104
                     }
105 105
                 }
106 106
 
@@ -142,10 +142,10 @@  discard block
 block discarded – undo
142 142
                         $package->branches[] = $checkoutBranch;
143 143
                         $inferFromBranch = 'master';
144 144
                     }
145
-                    $this->git('fetch', $package->path, array('force' => true, 'origin', $inferFromBranch . ':' . $checkoutBranch));
145
+                    $this->git('fetch', $package->path, array('force' => true, 'origin', $inferFromBranch.':'.$checkoutBranch));
146 146
                     $this->git('checkout', $package->path, array($checkoutBranch));
147 147
                     $package->branch = $checkoutBranch;
148
-                    $package->version = 'dev-' . $checkoutBranch;
148
+                    $package->version = 'dev-'.$checkoutBranch;
149 149
                 } else {
150 150
                     continue;
151 151
                 }
Please login to merge, or discard this patch.
src/Workflow/Deployment.php 2 patches
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -14,10 +14,7 @@
 block discarded – undo
14 14
 
15 15
 namespace Netresearch\Kite\Workflow;
16 16
 use Netresearch\Kite\Task;
17
-
18 17
 use Netresearch\Kite\Workflow;
19
-use Netresearch\Kite\Exception;
20
-
21 18
 use Symfony\Component\Console\Input\InputOption;
22 19
 
23 20
 /**
Please login to merge, or discard this patch.
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
         if (!$rollback && !$restore) {
89 89
             $this->checkout();
90 90
             $this->release = date($this->get('releaseFormat', 'YmdHis'));
91
-            $this->set('releaseDir', 'releases/' . $this->release);
91
+            $this->set('releaseDir', 'releases/'.$this->release);
92 92
             $this->release();
93 93
             $this->shareResources();
94 94
         }
@@ -195,9 +195,9 @@  discard block
 block discarded – undo
195 195
     protected function activate()
196 196
     {
197 197
         $sub = $this->iterate('{nodes}', 'node');
198
-        $sub->message('<step>Activating ' . ($this->release ? 'new' : 'latest') . ' release</step>');
198
+        $sub->message('<step>Activating '.($this->release ? 'new' : 'latest').' release</step>');
199 199
         $sub->callback(
200
-            function (Task\IterateTask $iterator) {
200
+            function(Task\IterateTask $iterator) {
201 201
                 $links = $iterator->remoteShell('echo "`readlink previous`;`readlink current`;`readlink next`"', '{node.deployPath}');
202 202
                 list($previous, $current, $next) = explode(';', $links);
203 203
 
@@ -213,7 +213,7 @@  discard block
 block discarded – undo
213 213
 
214 214
                     $commands = array("ln -sfn $next current; rm next");
215 215
                     if ($current) {
216
-                        $from = '<comment>' . basename($current) . '</comment>';
216
+                        $from = '<comment>'.basename($current).'</comment>';
217 217
                         array_unshift($commands, "ln -s $current previous");
218 218
                         if ($previous) {
219 219
                             array_unshift($commands, "rm previous; rm -rf $previous");
@@ -252,7 +252,7 @@  discard block
 block discarded – undo
252 252
         $sub = $this->iterate('{nodes}', 'node');
253 253
         $sub->message('<step>Restoring previous release</step>');
254 254
         $sub->callback(
255
-            function (Task\IterateTask $iterator) use (&$firstPreviousRelease) {
255
+            function(Task\IterateTask $iterator) use (&$firstPreviousRelease) {
256 256
                 $links = $iterator->remoteShell('echo "`readlink previous`;`readlink current`;`readlink next`"', '{node.deployPath}');
257 257
                 list($previous, $current, $next) = explode(';', $links);
258 258
                 if (!$previous) {
@@ -269,7 +269,7 @@  discard block
 block discarded – undo
269 269
                     $commands = array("ln -sfn $previous current; rm previous");
270 270
                     if ($current) {
271 271
                         array_unshift($commands, "ln -s $current next");
272
-                        $from = '<comment>' . basename($current) . '</comment>';
272
+                        $from = '<comment>'.basename($current).'</comment>';
273 273
                     } else {
274 274
                         $from = '<warning>none</warning>';
275 275
                     }
@@ -292,7 +292,7 @@  discard block
 block discarded – undo
292 292
         $sub = $this->iterate('{shared}', array('type' => 'entries'));
293 293
         $sub->message('<step>Linking shared resources</step>');
294 294
         $sub->callback(
295
-            function (Task\IterateTask $iterator) {
295
+            function(Task\IterateTask $iterator) {
296 296
                 $type = $iterator->get('type');
297 297
                 if (!in_array($type, array('dirs', 'files'), true)) {
298 298
                     $iterator->doExit('shared may only contain keys "dirs" or "files"', 1);
@@ -311,13 +311,13 @@  discard block
 block discarded – undo
311 311
                     }
312 312
 
313 313
                     $commands[] = 'cd {releaseDir}';
314
-                    $commands[] = 'rm -rf ' . $entry;
314
+                    $commands[] = 'rm -rf '.$entry;
315 315
                     if ($dirName) {
316
-                        $commands[] = 'mkdir -p ' . $dirName;
317
-                        $commands[] = 'cd ' . $dirName;
316
+                        $commands[] = 'mkdir -p '.$dirName;
317
+                        $commands[] = 'cd '.$dirName;
318 318
                         $subDirCount += substr_count($dirName, '/') + 1;
319 319
                     }
320
-                    $commands[] = 'ln -s ' . str_repeat('../', $subDirCount) . $shareDir . '/' . $entry;
320
+                    $commands[] = 'ln -s '.str_repeat('../', $subDirCount).$shareDir.'/'.$entry;
321 321
 
322 322
                     $iterator->remoteShell($commands, '{node.deployPath}');
323 323
                 }
Please login to merge, or discard this patch.
src/Workflow/StageSelect.php 2 patches
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -13,12 +13,9 @@
 block discarded – undo
13 13
  */
14 14
 
15 15
 namespace Netresearch\Kite\Workflow;
16
-use Netresearch\Kite\Service\Factory;
17 16
 use Netresearch\Kite\Task;
18
-
19 17
 use Netresearch\Kite\Workflow;
20 18
 use Netresearch\Kite\Exception;
21
-
22 19
 use Symfony\Component\Console\Output\OutputInterface;
23 20
 
24 21
 /**
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -131,7 +131,7 @@  discard block
 block discarded – undo
131 131
     public function assemble()
132 132
     {
133 133
         $this->callback(
134
-            function () {
134
+            function() {
135 135
                 $stages = $this->get('stages');
136 136
                 $stageOptions = array();
137 137
                 // Begin keys from 1
@@ -176,7 +176,7 @@  discard block
 block discarded – undo
176 176
                     $task = clone $this->task;
177 177
                     foreach ($stages[$stage] as $key => $value) {
178 178
                         // Avoid variables overriding parent variables, by prefixing with this
179
-                        $task->set('this.' . $key, $value);
179
+                        $task->set('this.'.$key, $value);
180 180
                     }
181 181
                     $this->addTask($task);
182 182
                 }
Please login to merge, or discard this patch.
presets/common.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
         ],
50 50
         'task' => [
51 51
             'type' => 'callback',
52
-            'callback' => function (\Netresearch\Kite\Job $job) {
52
+            'callback' => function(\Netresearch\Kite\Job $job) {
53 53
                 $git = $job->get('git');
54 54
                 $command = $job->get('cmd');
55 55
                 foreach ($job->get('composer.packages') as $package) {
Please login to merge, or discard this patch.