Passed
Push — master ( 5a46b0...5752d2 )
by Aimeos
03:35
created
lib/custom/setup/default/schema/customer.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@  discard block
 block discarded – undo
8 8
 
9 9
 return array(
10 10
 	'table' => array(
11
-		'users' => function ( \Doctrine\DBAL\Schema\Schema $schema ) {
11
+		'users' => function( \Doctrine\DBAL\Schema\Schema $schema ) {
12 12
 
13 13
 			$table = $schema->createTable( 'users' );
14 14
 
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
 			$table->addColumn( 'status', 'smallint', array( 'default' => 1 ) );
45 45
 			$table->addColumn( 'updated_at', 'datetime', [] );
46 46
 			$table->addColumn( 'created_at', 'datetime', [] );
47
-			$table->addColumn( 'editor', 'string', array('length' => 255, 'default' => '' ) );
47
+			$table->addColumn( 'editor', 'string', array( 'length' => 255, 'default' => '' ) );
48 48
 
49 49
 			$table->setPrimaryKey( array( 'id' ), 'pk_lvusr_id' );
50 50
 			$table->addUniqueIndex( array( 'email' ), 'unq_lvusr_email' );
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
 			return $schema;
60 60
 		},
61 61
 
62
-		'users_address' => function ( \Doctrine\DBAL\Schema\Schema $schema ) {
62
+		'users_address' => function( \Doctrine\DBAL\Schema\Schema $schema ) {
63 63
 
64 64
 			$table = $schema->createTable( 'users_address' );
65 65
 
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
 			$table->addColumn( 'latitude', 'float', array( 'notnull' => false ) );
90 90
 			$table->addColumn( 'mtime', 'datetime', [] );
91 91
 			$table->addColumn( 'ctime', 'datetime', [] );
92
-			$table->addColumn( 'editor', 'string', array('length' => 255 ) );
92
+			$table->addColumn( 'editor', 'string', array( 'length' => 255 ) );
93 93
 
94 94
 			$table->setPrimaryKey( array( 'id' ), 'pk_lvuad_id' );
95 95
 			$table->addIndex( array( 'parentid' ), 'idx_lvuad_pid' );
@@ -106,7 +106,7 @@  discard block
 block discarded – undo
106 106
 			return $schema;
107 107
 		},
108 108
 
109
-		'users_list_type' => function ( \Doctrine\DBAL\Schema\Schema $schema ) {
109
+		'users_list_type' => function( \Doctrine\DBAL\Schema\Schema $schema ) {
110 110
 
111 111
 			$table = $schema->createTable( 'users_list_type' );
112 112
 
@@ -130,7 +130,7 @@  discard block
 block discarded – undo
130 130
 			return $schema;
131 131
 		},
132 132
 
133
-		'users_list' => function ( \Doctrine\DBAL\Schema\Schema $schema ) {
133
+		'users_list' => function( \Doctrine\DBAL\Schema\Schema $schema ) {
134 134
 
135 135
 			$table = $schema->createTable( 'users_list' );
136 136
 
@@ -159,7 +159,7 @@  discard block
 block discarded – undo
159 159
 			return $schema;
160 160
 		},
161 161
 
162
-		'users_property_type' => function ( \Doctrine\DBAL\Schema\Schema $schema ) {
162
+		'users_property_type' => function( \Doctrine\DBAL\Schema\Schema $schema ) {
163 163
 
164 164
 			$table = $schema->createTable( 'users_property_type' );
165 165
 
@@ -183,7 +183,7 @@  discard block
 block discarded – undo
183 183
 			return $schema;
184 184
 		},
185 185
 
186
-		'users_property' => function ( \Doctrine\DBAL\Schema\Schema $schema ) {
186
+		'users_property' => function( \Doctrine\DBAL\Schema\Schema $schema ) {
187 187
 
188 188
 			$table = $schema->createTable( 'users_property' );
189 189
 
Please login to merge, or discard this patch.