Completed
Pull Request — master (#92)
by
unknown
06:40
created
Core/ComplexField/ComplexFieldManager.php 1 patch
Spacing   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -52,8 +52,7 @@
 block discarded – undo
52 52
         if (isset($this->fieldTypeMap[$contentTypeIdentifier][$fieldTypeIdentifier]) || isset($this->fieldTypeMap['*'][$fieldTypeIdentifier]))
53 53
         {
54 54
             $fieldService = isset($this->fieldTypeMap[$contentTypeIdentifier][$fieldTypeIdentifier]) ?
55
-                $this->fieldTypeMap[$contentTypeIdentifier][$fieldTypeIdentifier] :
56
-                $this->fieldTypeMap['*'][$fieldTypeIdentifier];
55
+                $this->fieldTypeMap[$contentTypeIdentifier][$fieldTypeIdentifier] : $this->fieldTypeMap['*'][$fieldTypeIdentifier];
57 56
             return $fieldService->createValue($fieldValue, $context);
58 57
         }
59 58
         else
Please login to merge, or discard this patch.
Core/Executor/LocationManager.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -325,7 +325,7 @@
 block discarded – undo
325 325
      * The Location Manager currently supports setting references to location id.
326 326
      *
327 327
      * @throws \InvalidArgumentException When trying to set a reference to an unsupported attribute.
328
-     * @param \eZ\Publish\API\Repository\Values\Content\Location|LocationCollection $location
328
+     * @param LocationCollection|null $location
329 329
      * @return boolean
330 330
      */
331 331
     protected function setReferences($location)
Please login to merge, or discard this patch.
Core/EventListener/TracingStepExecutedListener.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
             case 'tag':
50 50
             case 'user':
51 51
             case 'user_group':
52
-                $out = $type  . ' ' . $this->getObjectIdentifierAsString($obj) . ' has been ' . $action;
52
+                $out = $type . ' ' . $this->getObjectIdentifierAsString($obj) . ' has been ' . $action;
53 53
                 break;
54 54
             case 'sql':
55 55
                 $out = 'sql has been executed';
Please login to merge, or discard this patch.