@@ -95,7 +95,7 @@ |
||
95 | 95 | |
96 | 96 | $output->writeln('<info>Migration: ' . $migration->name . '</info>'); |
97 | 97 | $output->writeln('Status: ' . $status); |
98 | - $output->writeln('Executed on: <info>' . ($migration->executionDate != null ? date("Y-m-d H:i:s", $migration->executionDate) : '--'). '</info>'); |
|
98 | + $output->writeln('Executed on: <info>' . ($migration->executionDate != null ? date("Y-m-d H:i:s", $migration->executionDate) : '--') . '</info>'); |
|
99 | 99 | $output->writeln('Execution notes: <info>' . $migration->executionError . '</info>'); |
100 | 100 | |
101 | 101 | if ($migration->status == Migration::STATUS_SUSPENDED) { |
@@ -58,26 +58,26 @@ |
||
58 | 58 | { |
59 | 59 | $format = array(); |
60 | 60 | if (0 != $dateInterval->y) { |
61 | - $format[] = $dateInterval->y.' years'; |
|
61 | + $format[] = $dateInterval->y . ' years'; |
|
62 | 62 | } |
63 | 63 | if (0 != $dateInterval->m) { |
64 | - $format[] = $dateInterval->m.' months'; |
|
64 | + $format[] = $dateInterval->m . ' months'; |
|
65 | 65 | } |
66 | 66 | if (0 != $dateInterval->d) { |
67 | - $format[] = $dateInterval->d.' days'; |
|
67 | + $format[] = $dateInterval->d . ' days'; |
|
68 | 68 | } |
69 | 69 | //if (0 < $dateInterval->h || 0 < $dateInterval->i || 0 < $dateInterval->s) { |
70 | 70 | // $format .= 'T'; |
71 | 71 | //} |
72 | 72 | if (0 != $dateInterval->h) { |
73 | - $format[] = $dateInterval->h.' hours'; |
|
73 | + $format[] = $dateInterval->h . ' hours'; |
|
74 | 74 | } |
75 | 75 | if (0 != $dateInterval->i) { |
76 | - $format[] = $dateInterval->i.' minutes'; |
|
76 | + $format[] = $dateInterval->i . ' minutes'; |
|
77 | 77 | } |
78 | 78 | if (0 != $dateInterval->s) { |
79 | - $format[] = $dateInterval->s.' seconds'; |
|
79 | + $format[] = $dateInterval->s . ' seconds'; |
|
80 | 80 | } |
81 | - return implode( ', ', $format); |
|
81 | + return implode(', ', $format); |
|
82 | 82 | } |
83 | 83 | } |
@@ -28,7 +28,7 @@ discard block |
||
28 | 28 | $currentProcesses = array_splice($processesQueue, 0, $maxParallel); |
29 | 29 | // start the initial stack of processes |
30 | 30 | foreach ($currentProcesses as $process) { |
31 | - $process->start(function ($type, $buffer) use ($callback, $process) { |
|
31 | + $process->start(function($type, $buffer) use ($callback, $process) { |
|
32 | 32 | if ($callback) { |
33 | 33 | $callback($type, $buffer, $process); |
34 | 34 | } |
@@ -44,7 +44,7 @@ discard block |
||
44 | 44 | // directly add and start new process after the previous finished |
45 | 45 | if (count($processesQueue) > 0) { |
46 | 46 | $nextProcess = array_shift($processesQueue); |
47 | - $nextProcess->start(function ($type, $buffer) use ($callback, $nextProcess) { |
|
47 | + $nextProcess->start(function($type, $buffer) use ($callback, $nextProcess) { |
|
48 | 48 | if ($callback) { |
49 | 49 | $callback($type, $buffer, $nextProcess); |
50 | 50 | } |
@@ -18,7 +18,7 @@ discard block |
||
18 | 18 | public function hasEmbeddedReferences($string) |
19 | 19 | { |
20 | 20 | $regexp = $this->getEmbeddedRegexp(); |
21 | - return (bool) preg_match_all($regexp, $string, $matches); |
|
21 | + return (bool)preg_match_all($regexp, $string, $matches); |
|
22 | 22 | } |
23 | 23 | |
24 | 24 | /** |
@@ -52,7 +52,7 @@ discard block |
||
52 | 52 | { |
53 | 53 | // we need to alter the regexp we usr for std ref resolving, as it will be used to match parts of text, not the whole string |
54 | 54 | $regexp = substr($this->getRegexp(), 1, -1); |
55 | - return '/' . preg_quote($this->beginToken). preg_replace(array('/^\^/'), array(''), $regexp) . '[^' . $this->endToken . ']+' . preg_quote($this->endToken) . '/'; |
|
55 | + return '/' . preg_quote($this->beginToken) . preg_replace(array('/^\^/'), array(''), $regexp) . '[^' . $this->endToken . ']+' . preg_quote($this->endToken) . '/'; |
|
56 | 56 | } |
57 | 57 | |
58 | 58 | /** |
@@ -35,7 +35,7 @@ |
||
35 | 35 | */ |
36 | 36 | public function getReferenceValue($identifier) |
37 | 37 | { |
38 | - switch(substr($identifier, 5)) { |
|
38 | + switch (substr($identifier, 5)) { |
|
39 | 39 | case 'iteration': |
40 | 40 | $current = end($this->stack); |
41 | 41 | return $current['step']; |
@@ -14,7 +14,7 @@ |
||
14 | 14 | |
15 | 15 | public static function forceSigchildEnabled($force) |
16 | 16 | { |
17 | - self::$forceSigchildEnabled = (bool) $force; |
|
17 | + self::$forceSigchildEnabled = (bool)$force; |
|
18 | 18 | } |
19 | 19 | |
20 | 20 | protected function isSigchildEnabled() |
@@ -22,23 +22,23 @@ |
||
22 | 22 | public function getProcess() |
23 | 23 | { |
24 | 24 | $parentClass = get_parent_class($this); |
25 | - $this_prefix = \Closure::bind(function(ProcessBuilder $builder){return $builder->prefix;}, null, $parentClass); |
|
25 | + $this_prefix = \Closure::bind(function(ProcessBuilder $builder) {return $builder->prefix; }, null, $parentClass); |
|
26 | 26 | $this_prefix = $this_prefix($this); |
27 | - $this_arguments = \Closure::bind(function(ProcessBuilder $builder){return $builder->arguments;}, null, $parentClass); |
|
27 | + $this_arguments = \Closure::bind(function(ProcessBuilder $builder) {return $builder->arguments; }, null, $parentClass); |
|
28 | 28 | $this_arguments = $this_arguments($this); |
29 | - $this_options = \Closure::bind(function(ProcessBuilder $builder){return $builder->options;}, null, $parentClass); |
|
29 | + $this_options = \Closure::bind(function(ProcessBuilder $builder) {return $builder->options; }, null, $parentClass); |
|
30 | 30 | $this_options = $this_options($this); |
31 | - $this_inheritEnv = \Closure::bind(function(ProcessBuilder $builder){return $builder->inheritEnv;}, null, $parentClass); |
|
31 | + $this_inheritEnv = \Closure::bind(function(ProcessBuilder $builder) {return $builder->inheritEnv; }, null, $parentClass); |
|
32 | 32 | $this_inheritEnv = $this_inheritEnv($this); |
33 | - $this_env = \Closure::bind(function(ProcessBuilder $builder){return $builder->env;}, null, $parentClass); |
|
33 | + $this_env = \Closure::bind(function(ProcessBuilder $builder) {return $builder->env; }, null, $parentClass); |
|
34 | 34 | $this_env = $this_env($this); |
35 | - $this_cwd = \Closure::bind(function(ProcessBuilder $builder){return $builder->cwd;}, null, $parentClass); |
|
35 | + $this_cwd = \Closure::bind(function(ProcessBuilder $builder) {return $builder->cwd; }, null, $parentClass); |
|
36 | 36 | $this_cwd = $this_cwd($this); |
37 | - $this_input = \Closure::bind(function(ProcessBuilder $builder){return $builder->input;}, null, $parentClass); |
|
37 | + $this_input = \Closure::bind(function(ProcessBuilder $builder) {return $builder->input; }, null, $parentClass); |
|
38 | 38 | $this_input = $this_input($this); |
39 | - $this_timeout = \Closure::bind(function(ProcessBuilder $builder){return $builder->timeout;}, null, $parentClass); |
|
39 | + $this_timeout = \Closure::bind(function(ProcessBuilder $builder) {return $builder->timeout; }, null, $parentClass); |
|
40 | 40 | $this_timeout = $this_timeout($this); |
41 | - $this_outputDisabled = \Closure::bind(function(ProcessBuilder $builder){return $builder->outputDisabled;}, null, $parentClass); |
|
41 | + $this_outputDisabled = \Closure::bind(function(ProcessBuilder $builder) {return $builder->outputDisabled; }, null, $parentClass); |
|
42 | 42 | $this_outputDisabled = $this_outputDisabled($this); |
43 | 43 | |
44 | 44 | if (0 === count($this_prefix) && 0 === count($this_arguments)) { |
@@ -78,8 +78,7 @@ |
||
78 | 78 | $this->errOutput->setVerbosity(OutputInterface::VERBOSITY_NORMAL); |
79 | 79 | $this->errOutput->writeln($message, $type); |
80 | 80 | $this->errOutput->setVerbosity(OutputInterface::VERBOSITY_QUIET); |
81 | - } |
|
82 | - else |
|
81 | + } else |
|
83 | 82 | { |
84 | 83 | $this->errOutput->writeln($message, $type); |
85 | 84 | } |
@@ -100,7 +100,7 @@ |
||
100 | 100 | } else if (strpos($path, './') === 0) { |
101 | 101 | $paths[$i] = substr($path, 2); |
102 | 102 | // q: should we also call realpath on $path? what if there are symlinks at play? |
103 | - } elseif (strpos($path, $rootDir) === 0 ) { |
|
103 | + } elseif (strpos($path, $rootDir) === 0) { |
|
104 | 104 | $paths[$i] = substr($path, strlen($rootDir)); |
105 | 105 | } elseif ($path === '') { |
106 | 106 | unset($paths[$i]); |
@@ -162,7 +162,9 @@ discard block |
||
162 | 162 | // sort tags by depth so that there will be no errors in case we are deleting parent and child |
163 | 163 | $tagsCollection = $tagsCollection->getArrayCopy(); |
164 | 164 | uasort($tagsCollection, function ($t1, $t2) { |
165 | - if ($t1->depth == $t2->depth) return 0; |
|
165 | + if ($t1->depth == $t2->depth) { |
|
166 | + return 0; |
|
167 | + } |
|
166 | 168 | return ($t1->depth > $t2->depth) ? -1 : 1; |
167 | 169 | }); |
168 | 170 | |
@@ -267,7 +269,9 @@ discard block |
||
267 | 269 | // sort top to bottom |
268 | 270 | $tagCollection = $tagCollection->getArrayCopy(); |
269 | 271 | uasort($tagCollection, function ($t1, $t2) { |
270 | - if ($t1->depth == $t2->depth) return 0; |
|
272 | + if ($t1->depth == $t2->depth) { |
|
273 | + return 0; |
|
274 | + } |
|
271 | 275 | return ($t1->depth > $t2->depth) ? 1 : -1; |
272 | 276 | }); |
273 | 277 | break; |
@@ -275,7 +279,9 @@ discard block |
||
275 | 279 | // sort bottom to top |
276 | 280 | $tagCollection = $tagCollection->getArrayCopy(); |
277 | 281 | uasort($tagCollection, function ($t1, $t2) { |
278 | - if ($t1->depth == $t2->depth) return 0; |
|
282 | + if ($t1->depth == $t2->depth) { |
|
283 | + return 0; |
|
284 | + } |
|
279 | 285 | return ($t1->depth > $t2->depth) ? -1 : 1; |
280 | 286 | }); |
281 | 287 | break; |
@@ -165,7 +165,7 @@ discard block |
||
165 | 165 | |
166 | 166 | // sort tags by depth so that there will be no errors in case we are deleting parent and child |
167 | 167 | $tagsCollection = $tagsCollection->getArrayCopy(); |
168 | - uasort($tagsCollection, function ($t1, $t2) { |
|
168 | + uasort($tagsCollection, function($t1, $t2) { |
|
169 | 169 | if ($t1->depth == $t2->depth) return 0; |
170 | 170 | return ($t1->depth > $t2->depth) ? -1 : 1; |
171 | 171 | }); |
@@ -272,7 +272,7 @@ discard block |
||
272 | 272 | case 'create': |
273 | 273 | // sort top to bottom |
274 | 274 | $tagCollection = $tagCollection->getArrayCopy(); |
275 | - uasort($tagCollection, function ($t1, $t2) { |
|
275 | + uasort($tagCollection, function($t1, $t2) { |
|
276 | 276 | if ($t1->depth == $t2->depth) return 0; |
277 | 277 | return ($t1->depth > $t2->depth) ? 1 : -1; |
278 | 278 | }); |
@@ -280,7 +280,7 @@ discard block |
||
280 | 280 | case 'delete': |
281 | 281 | // sort bottom to top |
282 | 282 | $tagCollection = $tagCollection->getArrayCopy(); |
283 | - uasort($tagCollection, function ($t1, $t2) { |
|
283 | + uasort($tagCollection, function($t1, $t2) { |
|
284 | 284 | if ($t1->depth == $t2->depth) return 0; |
285 | 285 | return ($t1->depth > $t2->depth) ? -1 : 1; |
286 | 286 | }); |