@@ -182,12 +182,12 @@ discard block |
||
182 | 182 | // guess the best path for the executables based on __DIR__ |
183 | 183 | if (($pos = strpos(__DIR__, 'consolidation/robo')) !== false) { |
184 | 184 | // the executables should be stored in vendor/bin |
185 | - $this->executableTargetDir = substr(__DIR__, 0, $pos).'bin'; |
|
185 | + $this->executableTargetDir = substr(__DIR__, 0, $pos) . 'bin'; |
|
186 | 186 | } |
187 | 187 | |
188 | 188 | // check if the executables are already available |
189 | 189 | foreach ($this->imageminRepos as $exec => $url) { |
190 | - $path = $this->executableTargetDir.'/'.$exec; |
|
190 | + $path = $this->executableTargetDir . '/' . $exec; |
|
191 | 191 | // if this is Windows add a .exe extension |
192 | 192 | if (substr($this->getOS(), 0, 3) == 'win') { |
193 | 193 | $path .= '.exe'; |
@@ -289,7 +289,7 @@ discard block |
||
289 | 289 | } catch (\InvalidArgumentException $e) { |
290 | 290 | // if finder cannot handle it, try with in()->name() |
291 | 291 | if (strpos($dir, '/') === false) { |
292 | - $dir = './'.$dir; |
|
292 | + $dir = './' . $dir; |
|
293 | 293 | } |
294 | 294 | $parts = explode('/', $dir); |
295 | 295 | $new_dir = implode('/', array_slice($parts, 0, -1)); |
@@ -319,7 +319,7 @@ discard block |
||
319 | 319 | */ |
320 | 320 | protected function getTarget($file, $to) |
321 | 321 | { |
322 | - $target = $to.'/'.basename($file); |
|
322 | + $target = $to . '/' . basename($file); |
|
323 | 323 | |
324 | 324 | return $target; |
325 | 325 | } |
@@ -432,7 +432,7 @@ discard block |
||
432 | 432 | protected function getOS() |
433 | 433 | { |
434 | 434 | $os = php_uname('s'); |
435 | - $os .= '/'.php_uname('m'); |
|
435 | + $os .= '/' . php_uname('m'); |
|
436 | 436 | // replace x86_64 to x64, because the imagemin repo uses that |
437 | 437 | $os = str_replace('x86_64', 'x64', $os); |
438 | 438 | // replace i386, i686, etc to x86, because of imagemin |
@@ -492,10 +492,10 @@ discard block |
||
492 | 492 | $this->printTaskInfo('Downloading the {executable} executable from the imagemin repository', ['executable' => $executable]); |
493 | 493 | |
494 | 494 | $os = $this->getOS(); |
495 | - $url = $this->imageminRepos[$executable].'/blob/master/vendor/'.$os.'/'.$executable.'?raw=true'; |
|
495 | + $url = $this->imageminRepos[$executable] . '/blob/master/vendor/' . $os . '/' . $executable . '?raw=true'; |
|
496 | 496 | if (substr($os, 0, 3) == 'win') { |
497 | 497 | // if it is win, add a .exe extension |
498 | - $url = $this->imageminRepos[$executable].'/blob/master/vendor/'.$os.'/'.$executable.'.exe?raw=true'; |
|
498 | + $url = $this->imageminRepos[$executable] . '/blob/master/vendor/' . $os . '/' . $executable . '.exe?raw=true'; |
|
499 | 499 | } |
500 | 500 | $data = @file_get_contents($url, false, null); |
501 | 501 | if ($data === false) { |
@@ -525,10 +525,10 @@ discard block |
||
525 | 525 | mkdir($this->executableTargetDir); |
526 | 526 | } |
527 | 527 | // save the executable into the target dir |
528 | - $path = $this->executableTargetDir.'/'.$executable; |
|
528 | + $path = $this->executableTargetDir . '/' . $executable; |
|
529 | 529 | if (substr($os, 0, 3) == 'win') { |
530 | 530 | // if it is win, add a .exe extension |
531 | - $path = $this->executableTargetDir.'/'.$executable.'.exe'; |
|
531 | + $path = $this->executableTargetDir . '/' . $executable . '.exe'; |
|
532 | 532 | } |
533 | 533 | $result = file_put_contents($path, $data); |
534 | 534 | if ($result === false) { |
@@ -540,7 +540,7 @@ discard block |
||
540 | 540 | chmod($path, 0755); |
541 | 541 | |
542 | 542 | // if everything successful, store the executable path |
543 | - $this->executablePaths[$executable] = $this->executableTargetDir.'/'.$executable; |
|
543 | + $this->executablePaths[$executable] = $this->executableTargetDir . '/' . $executable; |
|
544 | 544 | // if it is win, add a .exe extension |
545 | 545 | if (substr($os, 0, 3) == 'win') { |
546 | 546 | $this->executablePaths[$executable] .= '.exe'; |
@@ -129,7 +129,7 @@ |
||
129 | 129 | { |
130 | 130 | // run() will call advanceProgressIndicator() once for each |
131 | 131 | // file, one after calling stopBuffering, and again after compression. |
132 | - return count($this->files)+2; |
|
132 | + return count($this->files) + 2; |
|
133 | 133 | } |
134 | 134 | |
135 | 135 | /** |
@@ -35,7 +35,7 @@ |
||
35 | 35 | */ |
36 | 36 | public function __construct($url) |
37 | 37 | { |
38 | - $this->urls = (array) $url; |
|
38 | + $this->urls = (array)$url; |
|
39 | 39 | } |
40 | 40 | |
41 | 41 | /** |
@@ -189,7 +189,7 @@ |
||
189 | 189 | */ |
190 | 190 | public function cloneTask() |
191 | 191 | { |
192 | - $reflect = new \ReflectionClass(get_class($this->task)); |
|
192 | + $reflect = new \ReflectionClass(get_class($this->task)); |
|
193 | 193 | return $reflect->newInstanceArgs(func_get_args()); |
194 | 194 | } |
195 | 195 |
@@ -27,7 +27,7 @@ |
||
27 | 27 | * |
28 | 28 | * @param \Robo\Result $result |
29 | 29 | * |
30 | - * @return bool |
|
30 | + * @return null|boolean |
|
31 | 31 | */ |
32 | 32 | public function printResult(Result $result) |
33 | 33 | { |
@@ -6,7 +6,6 @@ |
||
6 | 6 | use Robo\Contract\ProgressIndicatorAwareInterface; |
7 | 7 | use Robo\Contract\VerbosityThresholdInterface; |
8 | 8 | use Robo\Common\ProgressIndicatorAwareTrait; |
9 | - |
|
10 | 9 | use Psr\Log\LogLevel; |
11 | 10 | use Psr\Log\LoggerAwareInterface; |
12 | 11 | use Psr\Log\LoggerAwareTrait; |
@@ -247,7 +247,7 @@ |
||
247 | 247 | $this->process = $process; |
248 | 248 | |
249 | 249 | if (!$output_callback) { |
250 | - $output_callback = function ($type, $buffer) { |
|
250 | + $output_callback = function($type, $buffer) { |
|
251 | 251 | $progressWasVisible = $this->hideTaskProgress(); |
252 | 252 | $this->writeMessage($buffer); |
253 | 253 | $this->showTaskProgress($progressWasVisible); |
@@ -380,7 +380,7 @@ |
||
380 | 380 | } |
381 | 381 | |
382 | 382 | /** |
383 | - * @param $command |
|
383 | + * @param string $command |
|
384 | 384 | * |
385 | 385 | * @return mixed |
386 | 386 | */ |
@@ -140,15 +140,15 @@ |
||
140 | 140 | return $this; |
141 | 141 | } |
142 | 142 | |
143 | - /** |
|
144 | - * Add arbitrary code to execute as a task. |
|
145 | - * |
|
146 | - * @see \Robo\Collection\CollectionInterface::addCode |
|
147 | - * |
|
148 | - * @param callable $code |
|
149 | - * @param int|string $name |
|
150 | - * @return $this |
|
151 | - */ |
|
143 | + /** |
|
144 | + * Add arbitrary code to execute as a task. |
|
145 | + * |
|
146 | + * @see \Robo\Collection\CollectionInterface::addCode |
|
147 | + * |
|
148 | + * @param callable $code |
|
149 | + * @param int|string $name |
|
150 | + * @return $this |
|
151 | + */ |
|
152 | 152 | public function addCode(callable $code, $name = \Robo\Collection\CollectionInterface::UNNAMEDTASK) |
153 | 153 | { |
154 | 154 | $this->getCollection()->addCode($code, $name); |
@@ -76,6 +76,10 @@ discard block |
||
76 | 76 | $this->resetState(); |
77 | 77 | } |
78 | 78 | |
79 | + /** |
|
80 | + * @param \League\Container\ContainerInterface $container |
|
81 | + * @param BuilderAwareInterface $commandFile |
|
82 | + */ |
|
79 | 83 | public static function create($container, $commandFile) |
80 | 84 | { |
81 | 85 | $builder = new self($commandFile); |
@@ -284,6 +288,9 @@ discard block |
||
284 | 288 | return $this->callCollectionStateFuntion(__FUNCTION__, func_get_args()); |
285 | 289 | } |
286 | 290 | |
291 | + /** |
|
292 | + * @param string $functionName |
|
293 | + */ |
|
287 | 294 | protected function callCollectionStateFuntion($functionName, $args) |
288 | 295 | { |
289 | 296 | $currentTask = ($this->currentTask instanceof WrappedTaskInterface) ? $this->currentTask->original() : $this->currentTask; |
@@ -24,6 +24,10 @@ |
||
24 | 24 | $this->process = $process; |
25 | 25 | } |
26 | 26 | |
27 | + /** |
|
28 | + * @param \League\Container\ContainerInterface $container |
|
29 | + * @param Process $process |
|
30 | + */ |
|
27 | 31 | public static function create($container, $process) |
28 | 32 | { |
29 | 33 | $processExecutor = new self($process); |
@@ -4,7 +4,6 @@ |
||
4 | 4 | |
5 | 5 | use Psr\Log\LoggerAwareTrait; |
6 | 6 | use Psr\Log\LoggerAwareInterface; |
7 | - |
|
8 | 7 | use Consolidation\AnnotatedCommand\Events\CustomEventAwareInterface; |
9 | 8 | use Consolidation\AnnotatedCommand\Events\CustomEventAwareTrait; |
10 | 9 | use Consolidation\OutputFormatters\StructuredData\PropertyList; |