@@ -344,7 +344,7 @@ |
||
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 | } |
@@ -124,7 +124,7 @@ |
||
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 |
@@ -138,7 +138,7 @@ |
||
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( |