Test Failed
Branch master (60d8a3)
by Daniel
05:24 queued 02:24
created
app/core/traits/SingletonTrait.php 1 patch
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -4,23 +4,23 @@
 block discarded – undo
4 4
 
5 5
 trait SingletonTrait
6 6
 {
7
-	/**
8
-	 * The instance of the class.
9
-	 * 
10
-	 * @var object
11
-	 */
7
+    /**
8
+     * The instance of the class.
9
+     * 
10
+     * @var object
11
+     */
12 12
     protected static $instance;
13 13
   	
14
-  	/**
15
-  	 * Fetch the instance of the class.
16
-  	 *
17
-	 * @var mixed $parameters
18
-  	 * @return object
19
-  	 */
14
+        /**
15
+         * Fetch the instance of the class.
16
+         *
17
+         * @var mixed $parameters
18
+         * @return object
19
+         */
20 20
     public static function singleton(...$parameters)
21 21
     {
22 22
         if (!isset(self::$instance)) {
23
-        	$class = __CLASS__;
23
+            $class = __CLASS__;
24 24
             self::$instance = new $class(...$parameters);
25 25
         }
26 26
         return self::$instance;
Please login to merge, or discard this patch.
app/core/Model.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -4,11 +4,11 @@
 block discarded – undo
4 4
 
5 5
 abstract class Model
6 6
 {
7
-	/**
8
-	 * The database instance
7
+    /**
8
+     * The database instance
9 9
      * 
10
-	 * @var PDO
11
-	 */
10
+     * @var PDO
11
+     */
12 12
     protected $database;
13 13
 
14 14
     /**
Please login to merge, or discard this patch.
app/core/Redirect.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
      */
13 13
     public static function to($url)
14 14
     {
15
-	self::createRedirect($url);
15
+    self::createRedirect($url);
16 16
     }
17 17
 
18 18
     /**
Please login to merge, or discard this patch.