Completed
Push — master ( 7d8634...f22a4d )
by Pavel
10:36
created
src/ApiRouteSpec.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 /**
6 6
  * @copyright   Copyright (c) 2016 ublaboo <[email protected]>
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
 	public function __construct(array $data)
87 87
 	{
88 88
 		foreach ($data as $key => $value) {
89
-			$method = 'set' . str_replace('_', '', ucwords($key, '_'));
89
+			$method = 'set'.str_replace('_', '', ucwords($key, '_'));
90 90
 
91 91
 			if (!method_exists($this, $method)) {
92 92
 				throw new ApiRouteWrongPropertyException(
Please login to merge, or discard this patch.