@@ -11,7 +11,7 @@ |
||
| 11 | 11 | { |
| 12 | 12 | public function setReferenceResolver(ReferenceResolverInterface $referenceResolver) |
| 13 | 13 | { |
| 14 | - if (! $referenceResolver instanceof EmbeddedReferenceResolverInterface) { |
|
| 14 | + if (!$referenceResolver instanceof EmbeddedReferenceResolverInterface) { |
|
| 15 | 15 | throw new \Exception("Reference resolver injected into EzXmlText field handler should implement EmbeddedReferenceResolverInterface"); |
| 16 | 16 | } |
| 17 | 17 | parent::setReferenceResolver($referenceResolver); |
@@ -49,7 +49,7 @@ discard block |
||
| 49 | 49 | echo 'B';*/ |
| 50 | 50 | |
| 51 | 51 | $ms->executeMigration(new MigrationDefinition( |
| 52 | - 'test_'.time(), |
|
| 52 | + 'test_' . time(), |
|
| 53 | 53 | '/hello', |
| 54 | 54 | '123', |
| 55 | 55 | MigrationDefinition::STATUS_PARSED, |
@@ -62,8 +62,8 @@ discard block |
||
| 62 | 62 | |
| 63 | 63 | $sh = $this->getContainer()->get('ez_migration_bundle.storage_handler'); |
| 64 | 64 | |
| 65 | - $m1 = 'hello_'.time(); |
|
| 66 | - $m2 = 'there_'.time(); |
|
| 65 | + $m1 = 'hello_' . time(); |
|
| 66 | + $m2 = 'there_' . time(); |
|
| 67 | 67 | $sh->startMigration(new MigrationDefinition( |
| 68 | 68 | $m1, |
| 69 | 69 | '/hello', |
@@ -225,7 +225,7 @@ discard block |
||
| 225 | 225 | } |
| 226 | 226 | } |
| 227 | 227 | |
| 228 | - foreach($referencesDefs as $reference) { |
|
| 228 | + foreach ($referencesDefs as $reference) { |
|
| 229 | 229 | $overwrite = false; |
| 230 | 230 | if (isset($reference['overwrite'])) { |
| 231 | 231 | $overwrite = $reference['overwrite']; |
@@ -246,7 +246,7 @@ discard block |
||
| 246 | 246 | { |
| 247 | 247 | // allow setting *some* refs even when we have 0 or N matches |
| 248 | 248 | foreach ($referencesDefinition as $key => $reference) { |
| 249 | - switch($reference['attribute']) { |
|
| 249 | + switch ($reference['attribute']) { |
|
| 250 | 250 | |
| 251 | 251 | case 'count': |
| 252 | 252 | $value = count($entity); |
@@ -249,7 +249,7 @@ discard block |
||
| 249 | 249 | } |
| 250 | 250 | |
| 251 | 251 | // Add new attributes |
| 252 | - foreach($newFieldDefinitions as $newFieldDefinition) { |
|
| 252 | + foreach ($newFieldDefinitions as $newFieldDefinition) { |
|
| 253 | 253 | if ($newFieldDefinition->position == 0) { |
| 254 | 254 | $newFieldDefinition->position = ++$maxFieldDefinitionPos; |
| 255 | 255 | } |
@@ -370,7 +370,7 @@ discard block |
||
| 370 | 370 | break; |
| 371 | 371 | case 'content_type_groups_ids': |
| 372 | 372 | $value = []; |
| 373 | - foreach($contentType->contentTypeGroups as $existingGroup) { |
|
| 373 | + foreach ($contentType->contentTypeGroups as $existingGroup) { |
|
| 374 | 374 | $value[] = $existingGroup->id; |
| 375 | 375 | } |
| 376 | 376 | break; |
@@ -766,7 +766,7 @@ discard block |
||
| 766 | 766 | $contentTypeGroup = $this->contentTypeGroupMatcher->matchOneByKey($contentTypeGroupId); |
| 767 | 767 | $contentTypeGroupId = $contentTypeGroup->id; |
| 768 | 768 | |
| 769 | - foreach($contentType->contentTypeGroups as $existingGroup) { |
|
| 769 | + foreach ($contentType->contentTypeGroups as $existingGroup) { |
|
| 770 | 770 | if ($existingGroup->id === $contentTypeGroupId) { |
| 771 | 771 | return; |
| 772 | 772 | } |
@@ -782,7 +782,7 @@ discard block |
||
| 782 | 782 | $contentTypeGroup = $this->contentTypeGroupMatcher->matchOneByKey($contentTypeGroupId); |
| 783 | 783 | $contentTypeGroupId = $contentTypeGroup->id; |
| 784 | 784 | |
| 785 | - foreach($contentType->contentTypeGroups as $existingGroup) { |
|
| 785 | + foreach ($contentType->contentTypeGroups as $existingGroup) { |
|
| 786 | 786 | if ($existingGroup->id === $contentTypeGroupId) { |
| 787 | 787 | $contentTypeService = $this->repository->getContentTypeService(); |
| 788 | 788 | $contentTypeService->unassignContentTypeGroup($contentType, $contentTypeGroup); |
@@ -520,7 +520,7 @@ discard block |
||
| 520 | 520 | $locations = $locationService->loadLocations($content->contentInfo); |
| 521 | 521 | if (count($locations) > 1) { |
| 522 | 522 | $otherParentLocations = array(); |
| 523 | - foreach($locations as $otherLocation) { |
|
| 523 | + foreach ($locations as $otherLocation) { |
|
| 524 | 524 | if ($otherLocation->id != $location->id) { |
| 525 | 525 | $otherParentLocations[] = $otherLocation->parentLocationId; |
| 526 | 526 | } |
@@ -696,7 +696,7 @@ discard block |
||
| 696 | 696 | }, |
| 697 | 697 | array_filter( |
| 698 | 698 | $this->repository->getContentLanguageService()->loadLanguages(), |
| 699 | - function ($language) { |
|
| 699 | + function($language) { |
|
| 700 | 700 | return $language->enabled; |
| 701 | 701 | } |
| 702 | 702 | ) |
@@ -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']; |
@@ -80,7 +80,7 @@ discard block |
||
| 80 | 80 | $subStep = new MigrationStep($type, $stepDef, array_merge($step->context, array())); |
| 81 | 81 | try { |
| 82 | 82 | $result = $stepExecutors[$j]->execute($subStep); |
| 83 | - } catch(MigrationStepSkippedException $e) { |
|
| 83 | + } catch (MigrationStepSkippedException $e) { |
|
| 84 | 84 | // all ok, continue the loop |
| 85 | 85 | } |
| 86 | 86 | } |
@@ -97,7 +97,7 @@ discard block |
||
| 97 | 97 | $subStep = new MigrationStep($type, $stepDef, array_merge($step->context, array())); |
| 98 | 98 | try { |
| 99 | 99 | $result = $stepExecutors[$j]->execute($subStep); |
| 100 | - } catch(MigrationStepSkippedException $e) { |
|
| 100 | + } catch (MigrationStepSkippedException $e) { |
|
| 101 | 101 | // all ok, continue the loop |
| 102 | 102 | } |
| 103 | 103 | } |
@@ -40,7 +40,7 @@ |
||
| 40 | 40 | public function sortField2Hash($value) |
| 41 | 41 | { |
| 42 | 42 | $ref = new \ReflectionClass('eZ\Publish\API\Repository\Values\Content\Location'); |
| 43 | - foreach($ref->getConstants() as $key => $val) { |
|
| 43 | + foreach ($ref->getConstants() as $key => $val) { |
|
| 44 | 44 | if (strpos($key, 'SORT_FIELD_') === 0 && $val == $value) { |
| 45 | 45 | $out = strtolower(substr($key, 11)); |
| 46 | 46 | if ($out == 'contentobject_id') { |
@@ -146,7 +146,7 @@ discard block |
||
| 146 | 146 | return new Query\Criterion\DateMetadata(Query\Criterion\DateMetadata::CREATED, self::$operatorsMap[$operator], $match); |
| 147 | 147 | |
| 148 | 148 | case self::MATCH_GROUP: |
| 149 | - foreach($values as &$value) { |
|
| 149 | + foreach ($values as &$value) { |
|
| 150 | 150 | if (!ctype_digit($value)) { |
| 151 | 151 | $value = $this->groupMatcher->matchOneByKey($value)->id; |
| 152 | 152 | } |
@@ -165,7 +165,7 @@ discard block |
||
| 165 | 165 | return new Query\Criterion\DateMetadata(Query\Criterion\DateMetadata::MODIFIED, self::$operatorsMap[$operator], $match); |
| 166 | 166 | |
| 167 | 167 | case self::MATCH_OBJECT_STATE: |
| 168 | - foreach($values as &$value) { |
|
| 168 | + foreach ($values as &$value) { |
|
| 169 | 169 | if (!ctype_digit($value)) { |
| 170 | 170 | $value = $this->stateMatcher->matchOneByKey($value)->id; |
| 171 | 171 | } |
@@ -173,7 +173,7 @@ discard block |
||
| 173 | 173 | return new Query\Criterion\ObjectStateId($values); |
| 174 | 174 | |
| 175 | 175 | case self::MATCH_OWNER: |
| 176 | - foreach($values as &$value) { |
|
| 176 | + foreach ($values as &$value) { |
|
| 177 | 177 | if (!ctype_digit($value)) { |
| 178 | 178 | $value = $this->userMatcher->matchOneByKey($value)->id; |
| 179 | 179 | } |
@@ -193,7 +193,7 @@ discard block |
||
| 193 | 193 | return new Query\Criterion\ParentLocationId($locationIds); |
| 194 | 194 | |
| 195 | 195 | case self::MATCH_SECTION: |
| 196 | - foreach($values as &$value) { |
|
| 196 | + foreach ($values as &$value) { |
|
| 197 | 197 | if (!ctype_digit($value)) { |
| 198 | 198 | $value = $this->sectionMatcher->matchOneByKey($value)->id; |
| 199 | 199 | } |
@@ -214,7 +214,7 @@ discard block |
||
| 214 | 214 | |
| 215 | 215 | case self::MATCH_AND: |
| 216 | 216 | $subCriteria = array(); |
| 217 | - foreach($values as $subCriterion) { |
|
| 217 | + foreach ($values as $subCriterion) { |
|
| 218 | 218 | $value = reset($subCriterion); |
| 219 | 219 | $subCriteria[] = $this->getQueryCriterion(key($subCriterion), $value); |
| 220 | 220 | } |
@@ -222,7 +222,7 @@ discard block |
||
| 222 | 222 | |
| 223 | 223 | case self::MATCH_OR: |
| 224 | 224 | $subCriteria = array(); |
| 225 | - foreach($values as $subCriterion) { |
|
| 225 | + foreach ($values as $subCriterion) { |
|
| 226 | 226 | $value = reset($subCriterion); |
| 227 | 227 | $subCriteria[] = $this->getQueryCriterion(key($subCriterion), $value); |
| 228 | 228 | } |
@@ -259,7 +259,7 @@ discard block |
||
| 259 | 259 | |
| 260 | 260 | $direction = $this->hash2SortOrder($sortItem['sort_order']); |
| 261 | 261 | |
| 262 | - switch($sortItem['sort_field']) { |
|
| 262 | + switch ($sortItem['sort_field']) { |
|
| 263 | 263 | case SELF::SORT_CONTENT_ID: |
| 264 | 264 | $out[] = new SortClause\ContentId($direction); |
| 265 | 265 | break; |