Passed
Push — master ( 2bd104...ffa3c7 )
by Darío
03:48
created
module/Auth/lang/en.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -3,12 +3,12 @@
 block discarded – undo
3 3
 return [
4 4
     "Register form" => "Register form",
5 5
     "User registering" => "User registering",
6
-	"Username" => "Username",
7
-	"username" => "username",
8
-	"Email" => "Email",
9
-	"email" => "email",
10
-	"Password" => "Password",
11
-	"password" => "password",
6
+    "Username" => "Username",
7
+    "username" => "username",
8
+    "Email" => "Email",
9
+    "email" => "email",
10
+    "Password" => "Password",
11
+    "password" => "password",
12 12
     "Repeat your password" => "Repeat your password",
13 13
     "Register now" => "Register now",
14 14
     "Log in" => "Log in",
Please login to merge, or discard this patch.
module/Auth/config/module.config.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -3,11 +3,11 @@
 block discarded – undo
3 3
 return [
4 4
     'router' => [
5 5
         'routes' => [
6
-        	'Auth' => [
7
-        		'module' => 'Auth',
8
-        		'controller' => 'LogIn',
9
-        		'view' => 'index'
10
-        	]
6
+            'Auth' => [
7
+                'module' => 'Auth',
8
+                'controller' => 'LogIn',
9
+                'view' => 'index'
10
+            ]
11 11
         ],
12 12
     ],
13 13
     'view_manager' => [
Please login to merge, or discard this patch.
module/Utils/source/Model/Entity.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,5 +6,5 @@
 block discarded – undo
6 6
 
7 7
 class Entity extends DbEntity
8 8
 {
9
-	// general table gateway
9
+    // general table gateway
10 10
 }
11 11
\ No newline at end of file
Please login to merge, or discard this patch.
module/Utils/Module.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -7,8 +7,8 @@
 block discarded – undo
7 7
 
8 8
 class Module extends AbstractionModule
9 9
 {
10
-	public function init(AbstractionController $c)
11
-	{
12
-		// init procedures
13
-	}
10
+    public function init(AbstractionController $c)
11
+    {
12
+        // init procedures
13
+    }
14 14
 }
15 15
\ No newline at end of file
Please login to merge, or discard this patch.
module/Utils/config/module.config.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -3,11 +3,11 @@
 block discarded – undo
3 3
 return [
4 4
     'router' => [
5 5
         'routes' => [
6
-        	'Utils' => [
7
-        		'module' => 'Utils',
8
-        		'controller' => '',
9
-        		'view' => ''
10
-        	]
6
+            'Utils' => [
7
+                'module' => 'Utils',
8
+                'controller' => '',
9
+                'view' => ''
10
+            ]
11 11
         ],
12 12
     ],
13 13
     'view_manager' => [
Please login to merge, or discard this patch.
module/Connections/source/Controller/Tools.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -481,7 +481,7 @@  discard block
 block discarded – undo
481 481
                     $sql_text = strstr($sql_text, ';', true);
482 482
             }
483 483
 
484
-             # clean comments and other characters
484
+                # clean comments and other characters
485 485
 
486 486
             // (/**/)
487 487
             $clean_code = preg_replace('/(\s)*\/\*([^*]|[\r\n]|(\*+([^*\/]|[\r\n])))*\*+\//', '', $sql_text);
@@ -923,7 +923,7 @@  discard block
 block discarded – undo
923 923
                     $sql_text = strstr($sql_text, ';', true);
924 924
             }
925 925
 
926
-             # clean comments and other characters
926
+                # clean comments and other characters
927 927
 
928 928
             // (/**/)
929 929
             $clean_code = preg_replace('/(\s)*\/\*([^*]|[\r\n]|(\*+([^*\/]|[\r\n])))*\*+\//', '', $sql_text);
Please login to merge, or discard this patch.
module/Connections/source/Model/Authentication.php 1 patch
Indentation   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -12,24 +12,24 @@
 block discarded – undo
12 12
 
13 13
         foreach ($dbconfig as $key => $value)
14 14
         {
15
-        	switch ($key)
16
-        	{
17
-        		case 'dbhost':
18
-        			$db->setDbhost($value);
19
-        			break;
20
-        		case 'dbuser':
21
-        			$db->setDbuser($value);
22
-        			break;
23
-        		case 'dbpass':
24
-        			$db->setDbpass($value);
25
-        			break;
26
-        		case 'dbname':
27
-        			$db->setDbname($value);
28
-        			break;
29
-        		case 'dbchar':
30
-        			$db->setDbChar($value);
31
-        			break;
32
-        	}
15
+            switch ($key)
16
+            {
17
+                case 'dbhost':
18
+                    $db->setDbhost($value);
19
+                    break;
20
+                case 'dbuser':
21
+                    $db->setDbuser($value);
22
+                    break;
23
+                case 'dbpass':
24
+                    $db->setDbpass($value);
25
+                    break;
26
+                case 'dbname':
27
+                    $db->setDbname($value);
28
+                    break;
29
+                case 'dbchar':
30
+                    $db->setDbChar($value);
31
+                    break;
32
+            }
33 33
         }
34 34
 
35 35
         return $db->reconnect();
Please login to merge, or discard this patch.
module/Connections/config/module.config.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -3,11 +3,11 @@
 block discarded – undo
3 3
 return [
4 4
     'router' => [
5 5
         'routes' => [
6
-        	'Connections' => [
7
-        		'module' => '',
8
-        		'controller' => '',
9
-        		'view' => 'index'
10
-        	]
6
+            'Connections' => [
7
+                'module' => '',
8
+                'controller' => '',
9
+                'view' => 'index'
10
+            ]
11 11
         ],
12 12
     ],
13 13
     'view_manager' => [
Please login to merge, or discard this patch.
module/Workarea/source/Model/Identifiers.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -6,19 +6,19 @@
 block discarded – undo
6 6
 
7 7
 class Identifiers extends Entity
8 8
 {
9
-	/**
10
-	* @var integer
11
-	*/
12
-	public $CONN_IDENTI_ID;
9
+    /**
10
+     * @var integer
11
+     */
12
+    public $CONN_IDENTI_ID;
13 13
 
14
-	/**
15
-	* @var string
16
-	*/
17
-	public $CONN_IDENTI_NAME;
14
+    /**
15
+     * @var string
16
+     */
17
+    public $CONN_IDENTI_NAME;
18 18
 
19 19
     public function __construct($data = [])
20 20
     {
21
-    	parent::__construct($data);
21
+        parent::__construct($data);
22 22
         $this->setTableName("SWM_CONN_IDENTIFIERS");
23 23
     }
24 24
 }
25 25
\ No newline at end of file
Please login to merge, or discard this patch.