Completed
Push — master ( 52d456...58c4ef )
by Ron
01:50
created
src/Tools/VirtualTables.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -30,10 +30,10 @@
 block discarded – undo
30 30
 	 * @return Select|null
31 31
 	 */
32 32
 	public function get($tableName) {
33
-		if($this->has($tableName)) {
33
+		if ($this->has($tableName)) {
34 34
 			$table = $this->virtualTables[(string) $tableName];
35
-			if($table instanceof \Closure) {
36
-				if($tableName instanceof VirtualTable) {
35
+			if ($table instanceof \Closure) {
36
+				if ($tableName instanceof VirtualTable) {
37 37
 					$params = $tableName->getParams();
38 38
 					return call_user_func($table, $params);
39 39
 				}
Please login to merge, or discard this patch.