Completed
Push — master ( f081e5...354401 )
by Ron
01:47
created
src/Tools/VirtualTables.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -30,9 +30,9 @@
 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[$tableName];
35
-			if($table instanceof \Closure) {
35
+			if ($table instanceof \Closure) {
36 36
 				return call_user_func($table);
37 37
 			}
38 38
 			return $table;
Please login to merge, or discard this patch.