Completed
Push — master ( 894b43...2171a3 )
by Joao
13s queued 10s
created
src/Singleton.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -15,17 +15,17 @@
 block discarded – undo
15 15
 	}
16 16
 	
17 17
 	/**
18
-	* @return static
19
-	*/
18
+	 * @return static
19
+	 */
20 20
 	public static function getInstance()
21 21
 	{
22
-    	static $instances;
22
+		static $instances;
23 23
 
24
-        $calledClass = get_called_class();
24
+		$calledClass = get_called_class();
25 25
 
26 26
 		if (!isset($instances[$calledClass]))
27 27
 		{
28
-            $instances[$calledClass] = new $calledClass();
28
+			$instances[$calledClass] = new $calledClass();
29 29
 		}
30 30
 		return $instances[$calledClass];
31 31
 	}
Please login to merge, or discard this patch.