Passed
Branch master (93b6ae)
by refat
12:48
created
core/helpers.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -118,7 +118,7 @@
 block discarded – undo
118 118
 
119 119
 if (!function_exists('notFoundPage')) {
120 120
 
121
- function notFoundPage()
121
+  function notFoundPage()
122 122
   {
123 123
     $notfound = 'Website\Notfound';
124 124
 
Please login to merge, or discard this patch.
core/System/Email.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
    * PHPMailer Object
21 21
    *
22 22
    * @var PHPMailer
23
-  */
23
+   */
24 24
   private $mail;
25 25
 
26 26
   /**
Please login to merge, or discard this patch.
core/System/Model.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -40,11 +40,11 @@
 block discarded – undo
40 40
   }
41 41
 
42 42
   /**
43
-  * Call the methods from Database Object
44
-  *
45
-  * @param $method
46
-  * @param $atgs
47
-  */
43
+   * Call the methods from Database Object
44
+   *
45
+   * @param $method
46
+   * @param $atgs
47
+   */
48 48
   public function __call($method, $args)
49 49
   {
50 50
     return call_user_func_array([$this->app->db, $method], $args);
Please login to merge, or discard this patch.