Completed
Push — master ( 18caae...407f06 )
by Gaetano
08:21
created
Core/Matcher/ReferenceMatcher.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
 
82 82
             switch ($key) {
83 83
                 case self::MATCH_AND:
84
-                    foreach($values as $subCriterion) {
84
+                    foreach ($values as $subCriterion) {
85 85
                         $value = $this->match($subCriterion);
86 86
                         if (!reset($value)) {
87 87
                             return $value;
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
                     return array(true);
91 91
 
92 92
                 case self::MATCH_OR:
93
-                    foreach($values as $subCriterion) {
93
+                    foreach ($values as $subCriterion) {
94 94
                         $value = $this->match($subCriterion);
95 95
                         if (reset($value)) {
96 96
                             return $value;
Please login to merge, or discard this patch.
Core/Matcher/QueryBasedMatcher.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -128,7 +128,7 @@  discard block
 block discarded – undo
128 128
                 return new Query\Criterion\DateMetadata(Query\Criterion\DateMetadata::CREATED, self::$operatorsMap[$operator], $match);
129 129
 
130 130
             case self::MATCH_GROUP:
131
-                foreach($values as &$value) {
131
+                foreach ($values as &$value) {
132 132
                     if (!ctype_digit($value)) {
133 133
                         $value = $this->groupMatcher->matchOneByKey($value)->id;
134 134
                     }
@@ -144,7 +144,7 @@  discard block
 block discarded – undo
144 144
                 return new Query\Criterion\DateMetadata(Query\Criterion\DateMetadata::MODIFIED, self::$operatorsMap[$operator], $match);
145 145
 
146 146
             case self::MATCH_OBJECT_STATE:
147
-                foreach($values as &$value) {
147
+                foreach ($values as &$value) {
148 148
                     if (!ctype_digit($value)) {
149 149
                         $value = $this->stateMatcher->matchOneByKey($value)->id;
150 150
                     }
@@ -152,7 +152,7 @@  discard block
 block discarded – undo
152 152
                 return new Query\Criterion\ObjectStateId($values);
153 153
 
154 154
             case self::MATCH_OWNER:
155
-                foreach($values as &$value) {
155
+                foreach ($values as &$value) {
156 156
                     if (!ctype_digit($value)) {
157 157
                         $value = $this->userMatcher->matchOneByKey($value)->id;
158 158
                     }
@@ -172,7 +172,7 @@  discard block
 block discarded – undo
172 172
                 return new Query\Criterion\ParentLocationId($locationIds);
173 173
 
174 174
             case self::MATCH_SECTION:
175
-                foreach($values as &$value) {
175
+                foreach ($values as &$value) {
176 176
                     if (!ctype_digit($value)) {
177 177
                         $value = $this->sectionMatcher->matchOneByKey($value)->id;
178 178
                     }
@@ -193,7 +193,7 @@  discard block
 block discarded – undo
193 193
 
194 194
             case self::MATCH_AND:
195 195
                 $subCriteria = array();
196
-                foreach($values as $subCriterion) {
196
+                foreach ($values as $subCriterion) {
197 197
                     $value = reset($subCriterion);
198 198
                     $subCriteria[] = $this->getQueryCriterion(key($subCriterion), $value);
199 199
                 }
@@ -201,7 +201,7 @@  discard block
 block discarded – undo
201 201
 
202 202
             case self::MATCH_OR:
203 203
                 $subCriteria = array();
204
-                foreach($values as $subCriterion) {
204
+                foreach ($values as $subCriterion) {
205 205
                     $value = reset($subCriterion);
206 206
                     $subCriteria[] = $this->getQueryCriterion(key($subCriterion), $value);
207 207
                 }
Please login to merge, or discard this patch.
Core/ContextHandler.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
     public function storeCurrentContext($migrationName)
36 36
     {
37 37
         $context = array();
38
-        foreach($this->providers as $label => $provider) {
38
+        foreach ($this->providers as $label => $provider) {
39 39
             $context[$label] = $provider->getCurrentContext($migrationName);
40 40
         }
41 41
 
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
         if (!is_array($context)) {
53 53
             throw new \Exception("No execution context found associated with migration '$migrationName'");
54 54
         }
55
-        foreach($this->providers as $label => $provider) {
55
+        foreach ($this->providers as $label => $provider) {
56 56
             if (isset($context[$label])) {
57 57
                 $provider->restoreContext($migrationName, $context[$label]);
58 58
             }
Please login to merge, or discard this patch.
Command/MigrationCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -95,7 +95,7 @@
 block discarded – undo
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) {
Please login to merge, or discard this patch.
Core/Executor/HTTPExecutor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@
 block discarded – undo
67 67
         $body = isset($dsl['body']) ? $this->resolveReferencesInText($dsl['body']) : null;
68 68
 
69 69
         if (isset($dsl['client'])) {
70
-            $client = $this->container->get('httplug.client.'.$dsl['client']);
70
+            $client = $this->container->get('httplug.client.' . $dsl['client']);
71 71
         } else {
72 72
             $client = $this->container->get('httplug.client');
73 73
         }
Please login to merge, or discard this patch.
Core/StorageHandler/Database/Migration.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -171,7 +171,7 @@  discard block
 block discarded – undo
171 171
     public function endMigration(APIMigration $migration, $force = false)
172 172
     {
173 173
         if ($migration->status == APIMigration::STATUS_STARTED) {
174
-            throw new \Exception($this->getEntityName($migration)." '{$migration->name}' can not be ended as its status is 'started'...");
174
+            throw new \Exception($this->getEntityName($migration) . " '{$migration->name}' can not be ended as its status is 'started'...");
175 175
         }
176 176
 
177 177
         $this->createTableIfNeeded();
@@ -198,13 +198,13 @@  discard block
 block discarded – undo
198 198
         if (!is_array($existingMigrationData)) {
199 199
             // commit to release the lock
200 200
             $conn->commit();
201
-            throw new \Exception($this->getEntityName($migration)." '{$migration->name}' can not be ended as it is not found");
201
+            throw new \Exception($this->getEntityName($migration) . " '{$migration->name}' can not be ended as it is not found");
202 202
         }
203 203
 
204 204
         if (($existingMigrationData['status'] != APIMigration::STATUS_STARTED) && !$force) {
205 205
             // commit to release the lock
206 206
             $conn->commit();
207
-            throw new \Exception($this->getEntityName($migration)." '{$migration->name}' can not be ended as it is not executing");
207
+            throw new \Exception($this->getEntityName($migration) . " '{$migration->name}' can not be ended as it is not executing");
208 208
         }
209 209
 
210 210
         $conn->update(
@@ -355,7 +355,7 @@  discard block
 block discarded – undo
355 355
         if (!is_array($existingMigrationData)) {
356 356
             // commit immediately, to release the lock and avoid deadlocks
357 357
             $conn->commit();
358
-            throw new \Exception($this->getEntityName($migration)." '{$migration->name}' can not be resumed as it is not found");
358
+            throw new \Exception($this->getEntityName($migration) . " '{$migration->name}' can not be resumed as it is not found");
359 359
         }
360 360
 
361 361
         // migration exists
@@ -364,7 +364,7 @@  discard block
 block discarded – undo
364 364
         if ($existingMigrationData['status'] != APIMigration::STATUS_SUSPENDED) {
365 365
             // commit to release the lock
366 366
             $conn->commit();
367
-            throw new \Exception($this->getEntityName($migration)." '{$migration->name}' can not be resumed as it is not suspended");
367
+            throw new \Exception($this->getEntityName($migration) . " '{$migration->name}' can not be resumed as it is not suspended");
368 368
         }
369 369
 
370 370
         $migration = new APIMigration(
Please login to merge, or discard this patch.
Core/Executor/ProcessExecutor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@
 block discarded – undo
63 63
         $builderArgs = array($this->referenceResolver->resolveReference($dsl['command']));
64 64
 
65 65
         if (isset($dsl['arguments'])) {
66
-            foreach($dsl['arguments'] as $arg) {
66
+            foreach ($dsl['arguments'] as $arg) {
67 67
                 $builderArgs[] = $this->referenceResolver->resolveReference($arg);
68 68
             }
69 69
         }
Please login to merge, or discard this patch.
Core/Executor/MigrationExecutor.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -105,13 +105,13 @@  discard block
 block discarded – undo
105 105
         $dsl['mode'] = 'load';
106 106
         // be kind to users and allow them not to specify this explicitly
107 107
         if (isset($dsl['references'])) {
108
-            foreach($dsl['references'] as &$refDef) {
108
+            foreach ($dsl['references'] as &$refDef) {
109 109
                 $refDef['overwrite'] = true;
110 110
             }
111 111
         }
112 112
         $step = new MigrationStep($dsl['type'], $dsl, $context);
113 113
 
114
-        switch($dsl['type']) {
114
+        switch ($dsl['type']) {
115 115
             case 'content':
116 116
                 return $this->contentManager->execute($step);
117 117
             case 'location':
@@ -139,7 +139,7 @@  discard block
 block discarded – undo
139 139
                     return $this->matchConditions($values);
140 140
 
141 141
                 default:
142
-                    throw new \Exception("Unknown until condition: '$key' when suspending a migration ".var_export($conditions, true));
142
+                    throw new \Exception("Unknown until condition: '$key' when suspending a migration " . var_export($conditions, true));
143 143
             }
144 144
         }
145 145
     }
Please login to merge, or discard this patch.
Command/ResumeCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
         $executed = 0;
94 94
         $failed = 0;
95 95
 
96
-        foreach($suspendedMigrations as $suspendedMigration) {
96
+        foreach ($suspendedMigrations as $suspendedMigration) {
97 97
             $output->writeln("<info>Resuming {$suspendedMigration->name}</info>");
98 98
 
99 99
             try {
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
 
114 114
         $time = microtime(true) - $start;
115 115
         $output->writeln("Resumed $executed migrations, failed $failed");
116
-        $output->writeln("Time taken: ".sprintf('%.2f', $time)." secs, memory: ".sprintf('%.2f', (memory_get_peak_usage(true) / 1000000)). ' MB');
116
+        $output->writeln("Time taken: " . sprintf('%.2f', $time) . " secs, memory: " . sprintf('%.2f', (memory_get_peak_usage(true) / 1000000)) . ' MB');
117 117
 
118 118
         if ($failed) {
119 119
             return 2;
Please login to merge, or discard this patch.