Passed
Push — master ( 18b833...d37444 )
by Adam
02:39
created
src/IPub/Forms/Forms/TEntityContainer.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
 					}
106 106
 
107 107
 				} else {
108
-					$methodName = 'get' . ucfirst($name);
108
+					$methodName = 'get'.ucfirst($name);
109 109
 
110 110
 					if (method_exists($entity, $methodName) && $value = call_user_func([$entity, $methodName])) {
111 111
 						if (is_object($value) && $this->isEntity($value)) {
@@ -135,7 +135,7 @@  discard block
 block discarded – undo
135 135
 					}
136 136
 
137 137
 				} else {
138
-					$methodName = 'get' . ucfirst($name);
138
+					$methodName = 'get'.ucfirst($name);
139 139
 
140 140
 					if (method_exists($entity, $methodName) && $value = call_user_func([$entity, $methodName])) {
141 141
 						if (is_object($value) && $this->isEntity($value)) {
Please login to merge, or discard this patch.