Test Setup Failed
Push — master ( e9e785...12d0d3 )
by Gerrit
47s
created
Mapping/ObjectMapping.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -344,7 +344,7 @@
 block discarded – undo
344 344
         if (!is_null($actualValue) && !$actualValue instanceof $this->className) {
345 345
             throw FailedRDMAssertionException::expectedInstanceOf(
346 346
                 $this->className,
347
-                is_object($actualValue) ?get_class($actualValue) :gettype($actualValue),
347
+                is_object($actualValue) ?get_class($actualValue) : gettype($actualValue),
348 348
                 $this->origin
349 349
             );
350 350
         }
Please login to merge, or discard this patch.
Mapping/Drivers/MappingXmlDriver.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -124,7 +124,7 @@
 block discarded – undo
124 124
             throw new InvalidMappingException(sprintf(
125 125
                 "Missing referenced orm file '%s'%s!",
126 126
                 $mappingFile,
127
-                is_string($parentMappingFile) ?sprintf(", referenced in file '%s'", $parentMappingFile) :''
127
+                is_string($parentMappingFile) ?sprintf(", referenced in file '%s'", $parentMappingFile) : ''
128 128
             ));
129 129
         }
130 130
 
Please login to merge, or discard this patch.
Mapping/CallDefinition.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -138,7 +138,7 @@
 block discarded – undo
138 138
             }
139 139
 
140 140
             if (!empty($calleeDescription)) {
141
-                $calleeDescription .= $this->isStaticCall ?'::' :'->';
141
+                $calleeDescription .= $this->isStaticCall ? '::' : '->';
142 142
             }
143 143
 
144 144
             throw new ORMException(sprintf(
Please login to merge, or discard this patch.