Completed
Push — master ( 5b9919...1161ba )
by Milan
38s
created
src/Response/Read/TransactionAbstract.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
 		if (array_key_exists($name, $this->properties)) {
32 32
 			return $this->properties[$name];
33 33
 		}
34
-		throw new Exceptions\Runtime('Property does not exists. ' . $name);
34
+		throw new Exceptions\Runtime('Property does not exists. '.$name);
35 35
 	}
36 36
 
37 37
 
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
 	 */
47 47
 	public function bindProperty(string $name, string $type, $value): void
48 48
 	{
49
-		$method = 'set' . ucfirst($name);
49
+		$method = 'set'.ucfirst($name);
50 50
 		if (method_exists($this, $method)) {
51 51
 			$value = $this->{$method}($value);
52 52
 		} elseif ($value !== null) {
Please login to merge, or discard this patch.