Passed
Push — master ( 054586...a82a12 )
by Anton
03:12
created
www/engine/System/Classes/Modules/Entitizer/Definition/User/Session.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -23,19 +23,19 @@
 block discarded – undo
23 23
 
24 24
 			# Add params
25 25
 
26
-			$this->params->addTextual       ('code',                true, 40, true, '');
27
-			$this->params->addTextual       ('ip',                  true, 255, false, '');
28
-			$this->params->addInteger       ('time',                false, 10, true, 0);
26
+			$this->params->addTextual('code', true, 40, true, '');
27
+			$this->params->addTextual('ip', true, 255, false, '');
28
+			$this->params->addInteger('time', false, 10, true, 0);
29 29
 
30 30
 			# Add indexes
31 31
 
32
-			$this->indexes->add             ('code',                'UNIQUE');
33
-			$this->indexes->add             ('ip');
34
-			$this->indexes->add             ('time');
32
+			$this->indexes->add('code', 'UNIQUE');
33
+			$this->indexes->add('ip');
34
+			$this->indexes->add('time');
35 35
 
36 36
 			# Add foreign keys
37 37
 
38
-			$this->foreigns->add            ('id',                  TABLE_USERS, 'id', 'CASCADE', 'RESTRICT');
38
+			$this->foreigns->add('id', TABLE_USERS, 'id', 'CASCADE', 'RESTRICT');
39 39
 		}
40 40
 	}
41 41
 }
Please login to merge, or discard this patch.