@@ -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 EzRichText field handler should implement EmbeddedReferenceResolverInterface"); |
16 | 16 | } |
17 | 17 | parent::setReferenceResolver($referenceResolver); |
@@ -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); |
@@ -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); |
@@ -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']; |
@@ -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') { |
@@ -149,7 +149,7 @@ |
||
149 | 149 | |
150 | 150 | protected function versionStatusToHash($status) |
151 | 151 | { |
152 | - foreach(ContentVersionMatcher::STATUS_MAP as $own => $ez) { |
|
152 | + foreach (ContentVersionMatcher::STATUS_MAP as $own => $ez) { |
|
153 | 153 | if ($status == $ez) { |
154 | 154 | return $own; |
155 | 155 | } |
@@ -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 | } |
@@ -94,13 +94,13 @@ |
||
94 | 94 | protected function normalizePaths($paths) |
95 | 95 | { |
96 | 96 | $rootDir = realpath($this->getContainer()->get('kernel')->getRootDir() . '/..') . '/'; |
97 | - foreach($paths as $i => $path) { |
|
97 | + foreach ($paths as $i => $path) { |
|
98 | 98 | if ($path === $rootDir || $path === './') { |
99 | 99 | $paths[$i] = './'; |
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]); |