Completed
Push — master ( 6f2b75...00a938 )
by Milan
37s
created
src/Read/TransactionFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
 			assert($type instanceof \ReflectionNamedType);
29 29
 
30 30
 			$value = $source->$column->value ?? null;
31
-			$method = 'set' . ucfirst($propertyName);
31
+			$method = 'set'.ucfirst($propertyName);
32 32
 			if (method_exists($transaction, $method)) {
33 33
 				$transaction->$method($value);
34 34
 			} elseif (property_exists($transaction, $propertyName)) {
Please login to merge, or discard this patch.