Completed
Branch master (d75b5f)
by Aimeos
03:45
created
lib/custom/setup/EzuserAddAddress.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -50,8 +50,7 @@
 block discarded – undo
50 50
 		{
51 51
 			$this->executeList( $sql, 'db-customer' );
52 52
 			$this->status( 'done' );
53
-		}
54
-		else
53
+		} else
55 54
 		{
56 55
 			$this->status( 'OK' );
57 56
 		}
Please login to merge, or discard this patch.
lib/custom/src/MShop/Customer/Manager/Ezpublish.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -314,8 +314,7 @@
 block discarded – undo
314 314
 
315 315
 			$user = $service->loadUser( $item->getId() );
316 316
 			$service->updateUser( $user, $struct );
317
-		}
318
-		else
317
+		} else
319 318
 		{
320 319
 			$struct = $service->newUserCreateStruct( $item->getCode(), $email, $item->getPassword(), 'eng-GB' );
321 320
 			$struct->enabled = $item->getStatus();
Please login to merge, or discard this patch.
lib/custom/setup/default/schema/customer.php 1 patch
Braces   +12 added lines, -6 removed lines patch added patch discarded remove patch
@@ -8,7 +8,8 @@  discard block
 block discarded – undo
8 8
 
9 9
 return array(
10 10
 	'table' => array(
11
-		'ezuser' => function ( \Doctrine\DBAL\Schema\Schema $schema ) {
11
+		'ezuser' => function ( \Doctrine\DBAL\Schema\Schema $schema )
12
+		{
12 13
 
13 14
 			$table = $schema->createTable( 'ezuser' );
14 15
 
@@ -25,7 +26,8 @@  discard block
 block discarded – undo
25 26
 			return $schema;
26 27
 		},
27 28
 
28
-		'ezuser_address' => function ( \Doctrine\DBAL\Schema\Schema $schema ) {
29
+		'ezuser_address' => function ( \Doctrine\DBAL\Schema\Schema $schema )
30
+		{
29 31
 
30 32
 			$table = $schema->createTable( 'ezuser_address' );
31 33
 
@@ -68,7 +70,8 @@  discard block
 block discarded – undo
68 70
 			return $schema;
69 71
 		},
70 72
 
71
-		'ezuser_list_type' => function ( \Doctrine\DBAL\Schema\Schema $schema ) {
73
+		'ezuser_list_type' => function ( \Doctrine\DBAL\Schema\Schema $schema )
74
+		{
72 75
 
73 76
 			$table = $schema->createTable( 'ezuser_list_type' );
74 77
 
@@ -92,7 +95,8 @@  discard block
 block discarded – undo
92 95
 			return $schema;
93 96
 		},
94 97
 
95
-		'ezuser_list' => function ( \Doctrine\DBAL\Schema\Schema $schema ) {
98
+		'ezuser_list' => function ( \Doctrine\DBAL\Schema\Schema $schema )
99
+		{
96 100
 
97 101
 			$table = $schema->createTable( 'ezuser_list' );
98 102
 
@@ -121,7 +125,8 @@  discard block
 block discarded – undo
121 125
 			return $schema;
122 126
 		},
123 127
 
124
-		'ezuser_property_type' => function ( \Doctrine\DBAL\Schema\Schema $schema ) {
128
+		'ezuser_property_type' => function ( \Doctrine\DBAL\Schema\Schema $schema )
129
+		{
125 130
 
126 131
 			$table = $schema->createTable( 'ezuser_property_type' );
127 132
 
@@ -145,7 +150,8 @@  discard block
 block discarded – undo
145 150
 			return $schema;
146 151
 		},
147 152
 
148
-		'ezuser_property' => function ( \Doctrine\DBAL\Schema\Schema $schema ) {
153
+		'ezuser_property' => function ( \Doctrine\DBAL\Schema\Schema $schema )
154
+		{
149 155
 
150 156
 			$table = $schema->createTable( 'ezuser_property' );
151 157
 
Please login to merge, or discard this patch.