Completed
Push — master ( 0e0e5a...f165f0 )
by Aimeos
03:15
created
lib/custom/setup/CustomerChangeAddressRefidParentidLaravel.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
 	 */
41 41
 	public function getPostDependencies()
42 42
 	{
43
-		return array( 'TablesCreateLaravel' );
43
+		return array('TablesCreateLaravel');
44 44
 	}
45 45
 
46 46
 
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
 	 */
50 50
 	protected function mysql()
51 51
 	{
52
-		$this->process( $this->mysql );
52
+		$this->process($this->mysql);
53 53
 	}
54 54
 
55 55
 
@@ -58,22 +58,22 @@  discard block
 block discarded – undo
58 58
 	 *
59 59
 	 * array string $stmts List of SQL statements for changing the columns
60 60
 	 */
61
-	protected function process( array $stmts )
61
+	protected function process(array $stmts)
62 62
 	{
63 63
 		$table = 'users_address';
64
-		$this->msg( sprintf( 'Rename "refid" to "parentid" in table "%1$s"', $table ), 0 ); $this->status( '' );
64
+		$this->msg(sprintf('Rename "refid" to "parentid" in table "%1$s"', $table), 0); $this->status('');
65 65
 
66
-		foreach( $stmts as $column => $stmts )
66
+		foreach ($stmts as $column => $stmts)
67 67
 		{
68
-			$this->msg( sprintf( 'Checking column "%1$s"', $column ), 1 );
68
+			$this->msg(sprintf('Checking column "%1$s"', $column), 1);
69 69
 
70
-			if( $this->schema->tableExists( $table )
71
-				&& $this->schema->columnExists( $table, $column ) === true
70
+			if ($this->schema->tableExists($table)
71
+				&& $this->schema->columnExists($table, $column) === true
72 72
 			) {
73
-				$this->executeList( $stmts );
74
-				$this->status( 'done' );
73
+				$this->executeList($stmts);
74
+				$this->status('done');
75 75
 			} else {
76
-				$this->status( 'OK' );
76
+				$this->status('OK');
77 77
 			}
78 78
 		}
79 79
 	}
Please login to merge, or discard this patch.
lib/custom/setup/TablesCreateLaravel.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
 	 */
22 22
 	public function getPostDependencies()
23 23
 	{
24
-		return array( 'MShopAddTypeData' );
24
+		return array('MShopAddTypeData');
25 25
 	}
26 26
 
27 27
 
@@ -30,15 +30,15 @@  discard block
 block discarded – undo
30 30
 	 */
31 31
 	protected function mysql()
32 32
 	{
33
-		$this->msg( 'Creating Aimeos Laravel user tables', 0 );
34
-		$this->status( '' );
33
+		$this->msg('Creating Aimeos Laravel user tables', 0);
34
+		$this->status('');
35 35
 
36 36
 		$ds = DIRECTORY_SEPARATOR;
37 37
 
38 38
 		$files = array(
39
-			'db-customer' => __DIR__ . $ds . 'default' . $ds . 'schema' . $ds . 'mysql' . $ds . 'customer.sql',
39
+			'db-customer' => __DIR__.$ds.'default'.$ds.'schema'.$ds.'mysql'.$ds.'customer.sql',
40 40
 		);
41 41
 
42
-		$this->setup( $files );
42
+		$this->setup($files);
43 43
 	}
44 44
 }
Please login to merge, or discard this patch.
lib/custom/setup/unittest/CustomerAddLaravelTestData.php 1 patch
Spacing   +21 added lines, -21 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
 	 */
22 22
 	public function getPreDependencies()
23 23
 	{
24
-		return array( 'TablesAddLaravelTestData' );
24
+		return array('TablesAddLaravelTestData');
25 25
 	}
26 26
 
27 27
 
@@ -31,36 +31,36 @@  discard block
 block discarded – undo
31 31
 	protected function process()
32 32
 	{
33 33
 		$iface = '\\Aimeos\\MShop\\Context\\Item\\Iface';
34
-		if( !( $this->additional instanceof $iface ) ) {
35
-			throw new \Aimeos\MW\Setup\Exception( sprintf( 'Additionally provided object is not of type "%1$s"', $iface ) );
34
+		if (!($this->additional instanceof $iface)) {
35
+			throw new \Aimeos\MW\Setup\Exception(sprintf('Additionally provided object is not of type "%1$s"', $iface));
36 36
 		}
37 37
 
38
-		$this->msg( 'Adding Laravel customer test data', 0 );
39
-		$this->additional->setEditor( 'ai-laravel:unittest' );
38
+		$this->msg('Adding Laravel customer test data', 0);
39
+		$this->additional->setEditor('ai-laravel:unittest');
40 40
 
41 41
 		$parentIds = array();
42 42
 		$ds = DIRECTORY_SEPARATOR;
43
-		$path = __DIR__ . $ds . 'data' . $ds . 'customer.php';
43
+		$path = __DIR__.$ds.'data'.$ds.'customer.php';
44 44
 
45
-		if( ( $testdata = include( $path ) ) == false ){
46
-			throw new \Aimeos\MShop\Exception( sprintf( 'No file "%1$s" found for customer domain', $path ) );
45
+		if (($testdata = include($path)) == false) {
46
+			throw new \Aimeos\MShop\Exception(sprintf('No file "%1$s" found for customer domain', $path));
47 47
 		}
48 48
 
49 49
 
50
-		$customerManager = \Aimeos\MShop\Customer\Manager\Factory::createManager( $this->additional, 'Laravel' );
51
-		$customerAddressManager = $customerManager->getSubManager( 'address', 'Laravel' );
50
+		$customerManager = \Aimeos\MShop\Customer\Manager\Factory::createManager($this->additional, 'Laravel');
51
+		$customerAddressManager = $customerManager->getSubManager('address', 'Laravel');
52 52
 
53
-		$this->cleanupCustomerData( $customerManager, $customerAddressManager );
53
+		$this->cleanupCustomerData($customerManager, $customerAddressManager);
54 54
 
55 55
 		$this->conn->begin();
56 56
 
57
-		$parentIds = $this->addCustomerData( $testdata, $customerManager, $customerAddressManager->createItem() );
58
-		$this->addCustomerAddressData( $testdata, $customerAddressManager, $parentIds );
57
+		$parentIds = $this->addCustomerData($testdata, $customerManager, $customerAddressManager->createItem());
58
+		$this->addCustomerAddressData($testdata, $customerAddressManager, $parentIds);
59 59
 
60 60
 		$this->conn->commit();
61 61
 
62 62
 
63
-		$this->status( 'done' );
63
+		$this->status('done');
64 64
 	}
65 65
 
66 66
 
@@ -70,17 +70,17 @@  discard block
 block discarded – undo
70 70
 	 * @param \Aimeos\MShop\Common\Manager\Iface $customerManager Customer manager
71 71
 	 * @param \Aimeos\MShop\Common\Manager\Iface $customerAddressManager Customer address manager
72 72
 	 */
73
-	protected function cleanupCustomerData( \Aimeos\MShop\Common\Manager\Iface $customerManager, \Aimeos\MShop\Common\Manager\Iface $customerAddressManager )
73
+	protected function cleanupCustomerData(\Aimeos\MShop\Common\Manager\Iface $customerManager, \Aimeos\MShop\Common\Manager\Iface $customerAddressManager)
74 74
 	{
75 75
 		$search = $customerManager->createSearch();
76
-		$search->setConditions( $search->compare( '==', 'customer.website', 'unittest.aimeos.org' ) );
77
-		$customerItems = $customerManager->searchItems( $search );
76
+		$search->setConditions($search->compare('==', 'customer.website', 'unittest.aimeos.org'));
77
+		$customerItems = $customerManager->searchItems($search);
78 78
 
79 79
 		$search = $customerAddressManager->createSearch();
80
-		$search->setConditions( $search->compare( '==', 'customer.address.website', 'unittest.aimeos.org' ) );
81
-		$addressItems = $customerAddressManager->searchItems( $search );
80
+		$search->setConditions($search->compare('==', 'customer.address.website', 'unittest.aimeos.org'));
81
+		$addressItems = $customerAddressManager->searchItems($search);
82 82
 
83
-		$customerAddressManager->deleteItems( array_keys( $addressItems ) );
84
-		$customerManager->deleteItems( array_keys( $customerItems ) );
83
+		$customerAddressManager->deleteItems(array_keys($addressItems));
84
+		$customerManager->deleteItems(array_keys($customerItems));
85 85
 	}
86 86
 }
Please login to merge, or discard this patch.
lib/custom/setup/unittest/CustomerListAddLaravelTestData.php 1 patch
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
 	 */
23 23
 	public function getPreDependencies()
24 24
 	{
25
-		return array( 'TablesCreateLaravel', 'CustomerAddLaravelTestData', 'LocaleAddTestData', 'TextAddTestData' );
25
+		return array('TablesCreateLaravel', 'CustomerAddLaravelTestData', 'LocaleAddTestData', 'TextAddTestData');
26 26
 	}
27 27
 
28 28
 
@@ -32,29 +32,29 @@  discard block
 block discarded – undo
32 32
 	protected function process()
33 33
 	{
34 34
 		$iface = '\\Aimeos\\MShop\\Context\\Item\\Iface';
35
-		if( !( $this->additional instanceof $iface ) ) {
36
-			throw new \Aimeos\MW\Setup\Exception( sprintf( 'Additionally provided object is not of type "%1$s"', $iface ) );
35
+		if (!($this->additional instanceof $iface)) {
36
+			throw new \Aimeos\MW\Setup\Exception(sprintf('Additionally provided object is not of type "%1$s"', $iface));
37 37
 		}
38 38
 
39
-		$this->msg( 'Adding customer-list Laravel test data', 0 );
40
-		$this->additional->setEditor( 'ai-laravel:unittest' );
39
+		$this->msg('Adding customer-list Laravel test data', 0);
40
+		$this->additional->setEditor('ai-laravel:unittest');
41 41
 
42 42
 		$ds = DIRECTORY_SEPARATOR;
43
-		$path = __DIR__ . $ds . 'data' . $ds . 'customer-list.php';
43
+		$path = __DIR__.$ds.'data'.$ds.'customer-list.php';
44 44
 
45
-		if( ( $testdata = include( $path ) ) == false ){
46
-			throw new \Aimeos\MShop\Exception( sprintf( 'No file "%1$s" found for customer list domain', $path ) );
45
+		if (($testdata = include($path)) == false) {
46
+			throw new \Aimeos\MShop\Exception(sprintf('No file "%1$s" found for customer list domain', $path));
47 47
 		}
48 48
 
49 49
 		$refKeys = array();
50
-		foreach( $testdata['customer/lists'] as $dataset ) {
51
-			$refKeys[ $dataset['domain'] ][] = $dataset['refid'];
50
+		foreach ($testdata['customer/lists'] as $dataset) {
51
+			$refKeys[$dataset['domain']][] = $dataset['refid'];
52 52
 		}
53 53
 
54 54
 		$refIds = array();
55
-		$refIds['text'] = $this->getTextData( $refKeys['text'] );
56
-		$this->addCustomerListData( $testdata, $refIds, 'Laravel' );
55
+		$refIds['text'] = $this->getTextData($refKeys['text']);
56
+		$this->addCustomerListData($testdata, $refIds, 'Laravel');
57 57
 
58
-		$this->status( 'done' );
58
+		$this->status('done');
59 59
 	}
60 60
 }
61 61
\ No newline at end of file
Please login to merge, or discard this patch.
lib/custom/setup/unittest/data/customer-list.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -5,17 +5,17 @@
 block discarded – undo
5 5
  * @copyright Aimeos (aimeos.org), 2014
6 6
  */
7 7
 
8
-return array (
9
-	'customer/lists/type' => array (
10
-		'product/favorite' => array( 'domain' => 'product', 'code' => 'favorite', 'label' => 'Favorite', 'status' => 1 ),
11
-		'product/watch' => array( 'domain' => 'product', 'code' => 'watch', 'label' => 'Watch list', 'status' => 1 ),
12
-		'text/default' => array( 'domain' => 'text', 'code' => 'default', 'label' => 'Standard', 'status' => 1 ),
8
+return array(
9
+	'customer/lists/type' => array(
10
+		'product/favorite' => array('domain' => 'product', 'code' => 'favorite', 'label' => 'Favorite', 'status' => 1),
11
+		'product/watch' => array('domain' => 'product', 'code' => 'watch', 'label' => 'Watch list', 'status' => 1),
12
+		'text/default' => array('domain' => 'text', 'code' => 'default', 'label' => 'Standard', 'status' => 1),
13 13
 	),
14 14
 
15
-	'customer/lists' => array (
16
-		array( 'parentid' => 'customer/unitCustomer3', 'typeid' => 'text/default', 'domain' => 'text', 'refid' => 'text/customer/information', 'start' => '2010-01-01 00:00:00', 'end' => '2100-01-01 00:00:00', 'config' => array(), 'pos' => 0, 'status' => 1 ),
17
-		array( 'parentid' => 'customer/unitCustomer3', 'typeid' => 'text/default', 'domain' => 'text', 'refid' => 'text/customer/notify', 'start' => '2010-01-01 00:00:00', 'end' => '2100-01-01 00:00:00', 'config' => array(), 'pos' => 1, 'status' => 1 ),
18
-		array( 'parentid' => 'customer/unitCustomer3', 'typeid' => 'text/default', 'domain' => 'text', 'refid' => 'text/customer/newsletter', 'start' => '2010-01-01 00:00:00', 'end' => '2100-01-01 00:00:00', 'config' => array(), 'pos' => 2, 'status' => 1 ),
19
-		array( 'parentid' => 'customer/unitCustomer1', 'typeid' => 'text/default', 'domain' => 'text', 'refid' => 'text/customer/information', 'start' => '2010-01-01 00:00:00', 'end' => '2100-01-01 00:00:00', 'config' => array(), 'pos' => 3, 'status' => 1 ),
15
+	'customer/lists' => array(
16
+		array('parentid' => 'customer/unitCustomer3', 'typeid' => 'text/default', 'domain' => 'text', 'refid' => 'text/customer/information', 'start' => '2010-01-01 00:00:00', 'end' => '2100-01-01 00:00:00', 'config' => array(), 'pos' => 0, 'status' => 1),
17
+		array('parentid' => 'customer/unitCustomer3', 'typeid' => 'text/default', 'domain' => 'text', 'refid' => 'text/customer/notify', 'start' => '2010-01-01 00:00:00', 'end' => '2100-01-01 00:00:00', 'config' => array(), 'pos' => 1, 'status' => 1),
18
+		array('parentid' => 'customer/unitCustomer3', 'typeid' => 'text/default', 'domain' => 'text', 'refid' => 'text/customer/newsletter', 'start' => '2010-01-01 00:00:00', 'end' => '2100-01-01 00:00:00', 'config' => array(), 'pos' => 2, 'status' => 1),
19
+		array('parentid' => 'customer/unitCustomer1', 'typeid' => 'text/default', 'domain' => 'text', 'refid' => 'text/customer/information', 'start' => '2010-01-01 00:00:00', 'end' => '2100-01-01 00:00:00', 'config' => array(), 'pos' => 3, 'status' => 1),
20 20
 	),
21 21
 );
22 22
\ No newline at end of file
Please login to merge, or discard this patch.
lib/custom/setup/unittest/data/customer.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -5,17 +5,17 @@
 block discarded – undo
5 5
  * @copyright Aimeos (aimeos.org), 2014
6 6
  */
7 7
 
8
-return array (
9
-	'customer' => array (
10
-		'customer/unitCustomer1' => array( 'label' => 'Max Mustermann', 'code' => 'unitCustomer1', 'status' => 1, 'company' => 'ABC GmbH', 'vatid' => 'DE999999999', 'salutation' => 'mr', 'title' => 'Dr', 'firstname' => 'Max', 'lastname' => 'Mustermann', 'address1' => 'Musterstraße', 'address2' => '1a', 'address3' => '', 'postal' => '20001', 'city' => 'Musterstadt', 'state' => 'Hamburg', 'countryid' => 'DE', 'langid' => 'de', 'telephone' => '01234567890', 'email' => '[email protected]', 'telefax' => '01234567890', 'website' => 'unittest.aimeos.org', 'birthday' => '1970-01-01', 'status' => '1', 'password' => 'unittest' ),
11
-		'customer/unitCustomer2' => array( 'label' => 'Erika Mustermann', 'code' => 'unitCustomer2', 'status' => 1, 'company' => 'ABC GmbH', 'vatid' => 'DE999999999', 'salutation' => 'mrs', 'title' => 'Prof. Dr.', 'firstname' => 'Erika', 'lastname' => 'Mustermann', 'address1' => 'Heidestraße', 'address2' => '17', 'address3' => '', 'postal' => '45632', 'city' => 'Köln', 'state' => '', 'countryid' => 'DE', 'langid' => 'de', 'telephone' => '09876543210', 'email' => '[email protected]', 'telefax' => '09876543210', 'website' => 'unittest.aimeos.org', 'birthday' => '1970-01-01', 'status' => '0' ),
12
-		'customer/unitCustomer3' => array( 'label' => 'Franz-Xaver Gabler', 'code' => 'unitCustomer3', 'status' => 0, 'company' => 'ABC GmbH', 'vatid' => 'DE999999999', 'salutation' => 'mr', 'title' => '', 'firstname' => 'Franz-Xaver', 'lastname' => 'Gabler', 'address1' => 'Phantasiestraße', 'address2' => '2', 'address3' => '', 'postal' => '23643', 'city' => 'Berlin', 'state' => '', 'countryid' => 'DE', 'langid' => 'de', 'telephone' => '01234509876', 'email' => '[email protected]', 'telefax' => '055544333212', 'website' => 'unittest.aimeos.org', 'birthday' => '1970-01-01', 'status' => '1' ),
8
+return array(
9
+	'customer' => array(
10
+		'customer/unitCustomer1' => array('label' => 'Max Mustermann', 'code' => 'unitCustomer1', 'status' => 1, 'company' => 'ABC GmbH', 'vatid' => 'DE999999999', 'salutation' => 'mr', 'title' => 'Dr', 'firstname' => 'Max', 'lastname' => 'Mustermann', 'address1' => 'Musterstraße', 'address2' => '1a', 'address3' => '', 'postal' => '20001', 'city' => 'Musterstadt', 'state' => 'Hamburg', 'countryid' => 'DE', 'langid' => 'de', 'telephone' => '01234567890', 'email' => '[email protected]', 'telefax' => '01234567890', 'website' => 'unittest.aimeos.org', 'birthday' => '1970-01-01', 'status' => '1', 'password' => 'unittest'),
11
+		'customer/unitCustomer2' => array('label' => 'Erika Mustermann', 'code' => 'unitCustomer2', 'status' => 1, 'company' => 'ABC GmbH', 'vatid' => 'DE999999999', 'salutation' => 'mrs', 'title' => 'Prof. Dr.', 'firstname' => 'Erika', 'lastname' => 'Mustermann', 'address1' => 'Heidestraße', 'address2' => '17', 'address3' => '', 'postal' => '45632', 'city' => 'Köln', 'state' => '', 'countryid' => 'DE', 'langid' => 'de', 'telephone' => '09876543210', 'email' => '[email protected]', 'telefax' => '09876543210', 'website' => 'unittest.aimeos.org', 'birthday' => '1970-01-01', 'status' => '0'),
12
+		'customer/unitCustomer3' => array('label' => 'Franz-Xaver Gabler', 'code' => 'unitCustomer3', 'status' => 0, 'company' => 'ABC GmbH', 'vatid' => 'DE999999999', 'salutation' => 'mr', 'title' => '', 'firstname' => 'Franz-Xaver', 'lastname' => 'Gabler', 'address1' => 'Phantasiestraße', 'address2' => '2', 'address3' => '', 'postal' => '23643', 'city' => 'Berlin', 'state' => '', 'countryid' => 'DE', 'langid' => 'de', 'telephone' => '01234509876', 'email' => '[email protected]', 'telefax' => '055544333212', 'website' => 'unittest.aimeos.org', 'birthday' => '1970-01-01', 'status' => '1'),
13 13
 	),
14 14
 
15
-	'customer/address' => array (
16
-		array ( 'parentid' => 'customer/unitCustomer1', 'company' => 'ABC', 'vatid' => 'DE999999999', 'salutation' => 'mr', 'title' => 'Dr', 'firstname' => 'Our', 'lastname' => 'Unittest', 'address1' => 'Pickhuben', 'address2' => '2-4', 'address3' => '', 'postal' => '20457', 'city' => 'Hamburg', 'state' => 'Hamburg', 'countryid' => 'DE', 'langid' => 'de', 'telephone' => '055544332211', 'email' => '[email protected]', 'telefax' => '055544332212', 'website' => 'unittest.aimeos.org', 'flag' => 0, 'pos' => '0' ),
17
-		array ( 'parentid' => 'customer/unitCustomer2', 'company' => 'ABC GmbH', 'vatid' => 'DE999999999', 'salutation' => 'mr', 'title' => 'Dr.', 'firstname' => 'Good', 'lastname' => 'Unittest', 'address1' => 'Pickhuben', 'address2' => '2-4', 'address3' => '', 'postal' => '20457', 'city' => 'Hamburg', 'state' => 'Hamburg', 'countryid' => 'DE', 'langid' => 'de', 'telephone' => '055544332211', 'email' => '[email protected]', 'telefax' => '055544332212', 'website' => 'unittest.aimeos.org', 'flag' => 0, 'pos' => '1' ),
18
-		array ( 'parentid' => 'customer/unitCustomer2', 'company' => 'ABC GmbH', 'vatid' => 'DE999999999', 'salutation' => 'mr', 'title' => 'Dr.', 'firstname' => 'Good', 'lastname' => 'Unittest', 'address1' => 'Pickhuben', 'address2' => '2-4', 'address3' => '', 'postal' => '11099', 'city' => 'Berlin', 'state' => 'Berlin', 'countryid' => 'DE', 'langid' => 'de', 'telephone' => '055544332221', 'email' => '[email protected]', 'telefax' => '055544333212', 'website' => 'unittest.aimeos.org', 'flag' => 0, 'pos' => '1' ),
19
-		array ( 'parentid' => 'customer/unitCustomer3', 'company' => 'unitcompany', 'vatid' => 'DE999999999', 'salutation' => 'company', 'title' => 'unittitle', 'firstname' => 'unitfirstname', 'lastname' => 'unitlastname', 'address1' => 'unitaddress1', 'address2' => 'unitaddress2', 'address3' => 'unitaddress3', 'postal' => 'unitpostal', 'city' => 'unitcity', 'state' => 'unitstate', 'countryid' => 'DE', 'langid' => 'de', 'telephone' => '1234567890', 'email' => '[email protected]', 'telefax' => '1234567891', 'website' => 'unittest.aimeos.org', 'flag' => 0, 'pos' => '2' ),
15
+	'customer/address' => array(
16
+		array('parentid' => 'customer/unitCustomer1', 'company' => 'ABC', 'vatid' => 'DE999999999', 'salutation' => 'mr', 'title' => 'Dr', 'firstname' => 'Our', 'lastname' => 'Unittest', 'address1' => 'Pickhuben', 'address2' => '2-4', 'address3' => '', 'postal' => '20457', 'city' => 'Hamburg', 'state' => 'Hamburg', 'countryid' => 'DE', 'langid' => 'de', 'telephone' => '055544332211', 'email' => '[email protected]', 'telefax' => '055544332212', 'website' => 'unittest.aimeos.org', 'flag' => 0, 'pos' => '0'),
17
+		array('parentid' => 'customer/unitCustomer2', 'company' => 'ABC GmbH', 'vatid' => 'DE999999999', 'salutation' => 'mr', 'title' => 'Dr.', 'firstname' => 'Good', 'lastname' => 'Unittest', 'address1' => 'Pickhuben', 'address2' => '2-4', 'address3' => '', 'postal' => '20457', 'city' => 'Hamburg', 'state' => 'Hamburg', 'countryid' => 'DE', 'langid' => 'de', 'telephone' => '055544332211', 'email' => '[email protected]', 'telefax' => '055544332212', 'website' => 'unittest.aimeos.org', 'flag' => 0, 'pos' => '1'),
18
+		array('parentid' => 'customer/unitCustomer2', 'company' => 'ABC GmbH', 'vatid' => 'DE999999999', 'salutation' => 'mr', 'title' => 'Dr.', 'firstname' => 'Good', 'lastname' => 'Unittest', 'address1' => 'Pickhuben', 'address2' => '2-4', 'address3' => '', 'postal' => '11099', 'city' => 'Berlin', 'state' => 'Berlin', 'countryid' => 'DE', 'langid' => 'de', 'telephone' => '055544332221', 'email' => '[email protected]', 'telefax' => '055544333212', 'website' => 'unittest.aimeos.org', 'flag' => 0, 'pos' => '1'),
19
+		array('parentid' => 'customer/unitCustomer3', 'company' => 'unitcompany', 'vatid' => 'DE999999999', 'salutation' => 'company', 'title' => 'unittitle', 'firstname' => 'unitfirstname', 'lastname' => 'unitlastname', 'address1' => 'unitaddress1', 'address2' => 'unitaddress2', 'address3' => 'unitaddress3', 'postal' => 'unitpostal', 'city' => 'unitcity', 'state' => 'unitstate', 'countryid' => 'DE', 'langid' => 'de', 'telephone' => '1234567890', 'email' => '[email protected]', 'telefax' => '1234567891', 'website' => 'unittest.aimeos.org', 'flag' => 0, 'pos' => '2'),
20 20
 	),
21 21
 );
Please login to merge, or discard this patch.
lib/custom/src/MShop/Customer/Manager/Address/Laravel.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
 			'label' => 'Customer address ID',
27 27
 			'code' => 'customer.address.id',
28 28
 			'internalcode' => 'lvuad."id"',
29
-			'internaldeps' => array( 'LEFT JOIN "users_address" AS lvuad ON ( lvu."id" = lvuad."parentid" )' ),
29
+			'internaldeps' => array('LEFT JOIN "users_address" AS lvuad ON ( lvu."id" = lvuad."parentid" )'),
30 30
 			'type' => 'integer',
31 31
 			'internaltype' => \Aimeos\MW\DB\Statement\Base::PARAM_INT,
32 32
 			'public' => false,
@@ -209,11 +209,11 @@  discard block
 block discarded – undo
209 209
 	 *
210 210
 	 * @param array $siteids List of IDs for sites whose entries should be deleted
211 211
 	 */
212
-	public function cleanup( array $siteids )
212
+	public function cleanup(array $siteids)
213 213
 	{
214 214
 		$path = 'mshop/customer/manager/address/submanagers';
215
-		foreach( $this->getContext()->getConfig()->get( $path, array() ) as $domain ) {
216
-			$this->getSubManager( $domain )->cleanup( $siteids );
215
+		foreach ($this->getContext()->getConfig()->get($path, array()) as $domain) {
216
+			$this->getSubManager($domain)->cleanup($siteids);
217 217
 		}
218 218
 	}
219 219
 
@@ -223,10 +223,10 @@  discard block
 block discarded – undo
223 223
 	 *
224 224
 	 * @param array $ids List of IDs
225 225
 	 */
226
-	public function deleteItems( array $ids )
226
+	public function deleteItems(array $ids)
227 227
 	{
228 228
 		$path = 'mshop/customer/manager/address/laravel/delete';
229
-		$this->deleteItemsBase( $ids, $path, false );
229
+		$this->deleteItemsBase($ids, $path, false);
230 230
 	}
231 231
 
232 232
 
@@ -236,11 +236,11 @@  discard block
 block discarded – undo
236 236
 	 * @param boolean $withsub Return also attributes of sub-managers if true
237 237
 	 * @return array List of attribute items implementing \Aimeos\MW\Criteria\Attribute\Iface
238 238
 	 */
239
-	public function getSearchAttributes( $withsub = true )
239
+	public function getSearchAttributes($withsub = true)
240 240
 	{
241 241
 		$path = 'mshop/customer/manager/address/submanagers';
242 242
 
243
-		return $this->getSearchAttributesBase( $this->searchConfig, $path, array(), $withsub );
243
+		return $this->getSearchAttributesBase($this->searchConfig, $path, array(), $withsub);
244 244
 	}
245 245
 
246 246
 
@@ -251,9 +251,9 @@  discard block
 block discarded – undo
251 251
 	 * @param string|null $name Name of the implementation, will be from configuration (or Default) if null
252 252
 	 * @return mixed Manager for different extensions, e.g stock, tags, locations, etc.
253 253
 	 */
254
-	public function getSubManager( $manager, $name = null )
254
+	public function getSubManager($manager, $name = null)
255 255
 	{
256
-		return $this->getSubManagerBase( 'customer', 'address/' . $manager, ( $name === null ? 'Laravel' : $name ) );
256
+		return $this->getSubManagerBase('customer', 'address/'.$manager, ($name === null ? 'Laravel' : $name));
257 257
 	}
258 258
 
259 259
 
Please login to merge, or discard this patch.
lib/custom/src/MShop/Customer/Manager/Laravel.php 2 patches
Spacing   +64 added lines, -64 removed lines patch added patch discarded remove patch
@@ -226,11 +226,11 @@  discard block
 block discarded – undo
226 226
 	 *
227 227
 	 * @param array $siteids List of IDs for sites whose entries should be deleted
228 228
 	 */
229
-	public function cleanup( array $siteids )
229
+	public function cleanup(array $siteids)
230 230
 	{
231 231
 		$path = 'mshop/customer/manager/submanagers';
232
-		foreach( $this->getContext()->getConfig()->get( $path, array( 'address', 'lists' ) ) as $domain ) {
233
-			$this->getSubManager( $domain )->cleanup( $siteids );
232
+		foreach ($this->getContext()->getConfig()->get($path, array('address', 'lists')) as $domain) {
233
+			$this->getSubManager($domain)->cleanup($siteids);
234 234
 		}
235 235
 	}
236 236
 
@@ -251,10 +251,10 @@  discard block
 block discarded – undo
251 251
 	 *
252 252
 	 * @param array $ids List of IDs
253 253
 	 */
254
-	public function deleteItems( array $ids )
254
+	public function deleteItems(array $ids)
255 255
 	{
256 256
 		$path = 'mshop/customer/manager/laravel/delete';
257
-		$this->deleteItemsBase( $ids, $path, false );
257
+		$this->deleteItemsBase($ids, $path, false);
258 258
 	}
259 259
 
260 260
 
@@ -264,11 +264,11 @@  discard block
 block discarded – undo
264 264
 	 * @param boolean $withsub Return also attributes of sub-managers if true
265 265
 	 * @return array List of attribute items implementing \Aimeos\MW\Criteria\Attribute\Iface
266 266
 	 */
267
-	public function getSearchAttributes( $withsub = true )
267
+	public function getSearchAttributes($withsub = true)
268 268
 	{
269 269
 		$path = 'mshop/customer/manager/submanagers';
270 270
 
271
-		return $this->getSearchAttributesBase( $this->searchConfig, $path, array( 'address', 'lists' ), $withsub );
271
+		return $this->getSearchAttributesBase($this->searchConfig, $path, array('address', 'lists'), $withsub);
272 272
 	}
273 273
 
274 274
 
@@ -278,27 +278,27 @@  discard block
 block discarded – undo
278 278
 	 * @param \Aimeos\MShop\Customer\Item\Iface $item Customer item object
279 279
 	 * @param boolean $fetch True if the new ID should be returned in the item
280 280
 	 */
281
-	public function saveItem( \Aimeos\MShop\Common\Item\Iface $item, $fetch = true )
281
+	public function saveItem(\Aimeos\MShop\Common\Item\Iface $item, $fetch = true)
282 282
 	{
283 283
 		$iface = '\\Aimeos\\MShop\\Customer\\Item\\Iface';
284
-		if( !( $item instanceof $iface ) ) {
285
-			throw new \Aimeos\MShop\Customer\Exception( sprintf( 'Object is not of required type "%1$s"', $iface ) );
284
+		if (!($item instanceof $iface)) {
285
+			throw new \Aimeos\MShop\Customer\Exception(sprintf('Object is not of required type "%1$s"', $iface));
286 286
 		}
287 287
 
288
-		if( !$item->isModified() ) { return; }
288
+		if (!$item->isModified()) { return; }
289 289
 
290 290
 		$context = $this->getContext();
291 291
 		$dbm = $context->getDatabaseManager();
292 292
 		$dbname = $this->getResourceName();
293
-		$conn = $dbm->acquire( $dbname );
293
+		$conn = $dbm->acquire($dbname);
294 294
 
295 295
 		try
296 296
 		{
297 297
 			$id = $item->getId();
298
-			$date = date( 'Y-m-d H:i:s' );
298
+			$date = date('Y-m-d H:i:s');
299 299
 			$billingAddress = $item->getPaymentAddress();
300 300
 
301
-			if( $id === null )
301
+			if ($id === null)
302 302
 			{
303 303
 				/** mshop/customer/manager/laravel/insert
304 304
 				 * Inserts a new customer record into the database table
@@ -362,45 +362,45 @@  discard block
 block discarded – undo
362 362
 				$path = 'mshop/customer/manager/laravel/update';
363 363
 			}
364 364
 
365
-			$stmt = $this->getCachedStatement( $conn, $path );
366
-
367
-			$stmt->bind( 1, $item->getCode() );
368
-			$stmt->bind( 2, $billingAddress->getCompany() );
369
-			$stmt->bind( 3, $billingAddress->getVatID() );
370
-			$stmt->bind( 4, $billingAddress->getSalutation() );
371
-			$stmt->bind( 5, $billingAddress->getTitle() );
372
-			$stmt->bind( 6, $billingAddress->getFirstname() );
373
-			$stmt->bind( 7, $billingAddress->getLastname() );
374
-			$stmt->bind( 8, $billingAddress->getAddress1() );
375
-			$stmt->bind( 9, $billingAddress->getAddress2() );
376
-			$stmt->bind( 10, $billingAddress->getAddress3() );
377
-			$stmt->bind( 11, $billingAddress->getPostal() );
378
-			$stmt->bind( 12, $billingAddress->getCity() );
379
-			$stmt->bind( 13, $billingAddress->getState() );
380
-			$stmt->bind( 14, $billingAddress->getCountryId() );
381
-			$stmt->bind( 15, $billingAddress->getLanguageId() );
382
-			$stmt->bind( 16, $billingAddress->getTelephone() );
383
-			$stmt->bind( 17, $billingAddress->getTelefax() );
384
-			$stmt->bind( 18, $billingAddress->getWebsite() );
385
-			$stmt->bind( 19, $billingAddress->getEmail() );
386
-			$stmt->bind( 20, $item->getLabel() );
387
-			$stmt->bind( 21, $item->getBirthday() );
388
-			$stmt->bind( 22, $item->getStatus(), \Aimeos\MW\DB\Statement\Base::PARAM_INT );
389
-			$stmt->bind( 23, $item->getDateVerified() );
390
-			$stmt->bind( 24, $item->getPassword() );
391
-			$stmt->bind( 25, $date ); // Modification time
392
-			$stmt->bind( 26, $context->getEditor() );
393
-
394
-			if( $id !== null ) {
395
-				$stmt->bind( 27, $id, \Aimeos\MW\DB\Statement\Base::PARAM_INT );
396
-				$item->setId( $id );
365
+			$stmt = $this->getCachedStatement($conn, $path);
366
+
367
+			$stmt->bind(1, $item->getCode());
368
+			$stmt->bind(2, $billingAddress->getCompany());
369
+			$stmt->bind(3, $billingAddress->getVatID());
370
+			$stmt->bind(4, $billingAddress->getSalutation());
371
+			$stmt->bind(5, $billingAddress->getTitle());
372
+			$stmt->bind(6, $billingAddress->getFirstname());
373
+			$stmt->bind(7, $billingAddress->getLastname());
374
+			$stmt->bind(8, $billingAddress->getAddress1());
375
+			$stmt->bind(9, $billingAddress->getAddress2());
376
+			$stmt->bind(10, $billingAddress->getAddress3());
377
+			$stmt->bind(11, $billingAddress->getPostal());
378
+			$stmt->bind(12, $billingAddress->getCity());
379
+			$stmt->bind(13, $billingAddress->getState());
380
+			$stmt->bind(14, $billingAddress->getCountryId());
381
+			$stmt->bind(15, $billingAddress->getLanguageId());
382
+			$stmt->bind(16, $billingAddress->getTelephone());
383
+			$stmt->bind(17, $billingAddress->getTelefax());
384
+			$stmt->bind(18, $billingAddress->getWebsite());
385
+			$stmt->bind(19, $billingAddress->getEmail());
386
+			$stmt->bind(20, $item->getLabel());
387
+			$stmt->bind(21, $item->getBirthday());
388
+			$stmt->bind(22, $item->getStatus(), \Aimeos\MW\DB\Statement\Base::PARAM_INT);
389
+			$stmt->bind(23, $item->getDateVerified());
390
+			$stmt->bind(24, $item->getPassword());
391
+			$stmt->bind(25, $date); // Modification time
392
+			$stmt->bind(26, $context->getEditor());
393
+
394
+			if ($id !== null) {
395
+				$stmt->bind(27, $id, \Aimeos\MW\DB\Statement\Base::PARAM_INT);
396
+				$item->setId($id);
397 397
 			} else {
398
-				$stmt->bind( 27, $date ); // Creation time
398
+				$stmt->bind(27, $date); // Creation time
399 399
 			}
400 400
 
401 401
 			$stmt->execute()->finish();
402 402
 
403
-			if( $id === null && $fetch === true )
403
+			if ($id === null && $fetch === true)
404 404
 			{
405 405
 				/** mshop/customer/manager/laravel/newid
406 406
 				 * Retrieves the ID generated by the database when inserting a new record
@@ -433,14 +433,14 @@  discard block
 block discarded – undo
433 433
 				 * @see mshop/customer/manager/laravel/count
434 434
 				 */
435 435
 				$path = 'mshop/customer/manager/laravel/newid';
436
-				$item->setId( $this->newId( $conn, $path ) );
436
+				$item->setId($this->newId($conn, $path));
437 437
 			}
438 438
 
439
-			$dbm->release( $conn, $dbname );
439
+			$dbm->release($conn, $dbname);
440 440
 		}
441
-		catch( \Exception $e )
441
+		catch (\Exception $e)
442 442
 		{
443
-			$dbm->release( $conn, $dbname );
443
+			$dbm->release($conn, $dbname);
444 444
 			throw $e;
445 445
 		}
446 446
 	}
@@ -454,11 +454,11 @@  discard block
 block discarded – undo
454 454
 	 * @return array List of items implementing \Aimeos\MShop\Customer\Item\Iface
455 455
 	 * @throws \Aimeos\MShop\Customer\Exception If creating items failed
456 456
 	 */
457
-	public function searchItems( \Aimeos\MW\Criteria\Iface $search, array $ref = array(), &$total = null )
457
+	public function searchItems(\Aimeos\MW\Criteria\Iface $search, array $ref = array(), &$total = null)
458 458
 	{
459 459
 		$dbm = $this->getContext()->getDatabaseManager();
460 460
 		$dbname = $this->getResourceName();
461
-		$conn = $dbm->acquire( $dbname );
461
+		$conn = $dbm->acquire($dbname);
462 462
 		$map = array();
463 463
 
464 464
 		try
@@ -466,22 +466,22 @@  discard block
 block discarded – undo
466 466
 			$level = \Aimeos\MShop\Locale\Manager\Base::SITE_ALL;
467 467
 			$cfgPathSearch = 'mshop/customer/manager/laravel/search';
468 468
 			$cfgPathCount = 'mshop/customer/manager/laravel/count';
469
-			$required = array( 'customer' );
469
+			$required = array('customer');
470 470
 
471
-			$results = $this->searchItemsBase( $conn, $search, $cfgPathSearch, $cfgPathCount, $required, $total, $level );
472
-			while( ( $row = $results->fetch() ) !== false ) {
473
-				$map[ $row['customer.id'] ] = $row;
471
+			$results = $this->searchItemsBase($conn, $search, $cfgPathSearch, $cfgPathCount, $required, $total, $level);
472
+			while (($row = $results->fetch()) !== false) {
473
+				$map[$row['customer.id']] = $row;
474 474
 			}
475 475
 
476
-			$dbm->release( $conn, $dbname );
476
+			$dbm->release($conn, $dbname);
477 477
 		}
478
-		catch( \Exception $e )
478
+		catch (\Exception $e)
479 479
 		{
480
-			$dbm->release( $conn, $dbname  );
480
+			$dbm->release($conn, $dbname);
481 481
 			throw $e;
482 482
 		}
483 483
 
484
-		return $this->buildItems( $map, $ref, 'customer' );
484
+		return $this->buildItems($map, $ref, 'customer');
485 485
 	}
486 486
 
487 487
 
@@ -492,8 +492,8 @@  discard block
 block discarded – undo
492 492
 	 * @param string|null $name Name of the implementation, will be from configuration (or Default) if null
493 493
 	 * @return mixed Manager for different extensions, e.g stock, tags, locations, etc.
494 494
 	 */
495
-	public function getSubManager( $manager, $name = null )
495
+	public function getSubManager($manager, $name = null)
496 496
 	{
497
-		return $this->getSubManagerBase( 'customer', $manager, ( $name === null ? 'Laravel' : $name ) );
497
+		return $this->getSubManagerBase('customer', $manager, ($name === null ? 'Laravel' : $name));
498 498
 	}
499 499
 }
Please login to merge, or discard this patch.
Braces   +3 added lines, -6 removed lines patch added patch discarded remove patch
@@ -330,8 +330,7 @@  discard block
 block discarded – undo
330 330
 				 * @see mshop/customer/manager/laravel/count
331 331
 				 */
332 332
 				$path = 'mshop/customer/manager/laravel/insert';
333
-			}
334
-			else
333
+			} else
335 334
 			{
336 335
 				/** mshop/customer/manager/laravel/update
337 336
 				 * Updates an existing customer record in the database
@@ -437,8 +436,7 @@  discard block
 block discarded – undo
437 436
 			}
438 437
 
439 438
 			$dbm->release( $conn, $dbname );
440
-		}
441
-		catch( \Exception $e )
439
+		} catch( \Exception $e )
442 440
 		{
443 441
 			$dbm->release( $conn, $dbname );
444 442
 			throw $e;
@@ -474,8 +472,7 @@  discard block
 block discarded – undo
474 472
 			}
475 473
 
476 474
 			$dbm->release( $conn, $dbname );
477
-		}
478
-		catch( \Exception $e )
475
+		} catch( \Exception $e )
479 476
 		{
480 477
 			$dbm->release( $conn, $dbname  );
481 478
 			throw $e;
Please login to merge, or discard this patch.
lib/custom/src/MShop/Customer/Manager/Lists/Laravel.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
 		'customer.lists.id'=> array(
26 26
 			'code'=>'customer.lists.id',
27 27
 			'internalcode'=>'lvuli."id"',
28
-			'internaldeps' => array( 'LEFT JOIN "users_list" AS lvuli ON ( lvu."id" = lvuli."parentid" )' ),
28
+			'internaldeps' => array('LEFT JOIN "users_list" AS lvuli ON ( lvu."id" = lvuli."parentid" )'),
29 29
 			'label'=>'Customer list ID',
30 30
 			'type'=> 'integer',
31 31
 			'internaltype'=> \Aimeos\MW\DB\Statement\Base::PARAM_INT,
@@ -133,14 +133,14 @@  discard block
 block discarded – undo
133 133
 	 *
134 134
 	 * @param array $siteids List of IDs for sites whose entries should be deleted
135 135
 	 */
136
-	public function cleanup( array $siteids )
136
+	public function cleanup(array $siteids)
137 137
 	{
138 138
 		$path = 'mshop/customer/manager/lists/submanagers';
139
-		foreach( $this->getContext()->getConfig()->get( $path, array( 'type' ) ) as $domain ) {
140
-			$this->getSubManager( $domain )->cleanup( $siteids );
139
+		foreach ($this->getContext()->getConfig()->get($path, array('type')) as $domain) {
140
+			$this->getSubManager($domain)->cleanup($siteids);
141 141
 		}
142 142
 
143
-		$this->cleanupBase( $siteids, 'mshop/customer/manager/lists/laravel/delete' );
143
+		$this->cleanupBase($siteids, 'mshop/customer/manager/lists/laravel/delete');
144 144
 	}
145 145
 
146 146
 
@@ -150,11 +150,11 @@  discard block
 block discarded – undo
150 150
 	 * @param boolean $withsub Return also attributes of sub-managers if true
151 151
 	 * @return array List of attribute items implementing \Aimeos\MW\Criteria\Attribute\Iface
152 152
 	 */
153
-	public function getSearchAttributes( $withsub = true )
153
+	public function getSearchAttributes($withsub = true)
154 154
 	{
155 155
 		$path = 'mshop/customer/manager/lists/submanagers';
156 156
 
157
-		return $this->getSearchAttributesBase( $this->searchConfig, $path, array( 'type' ), $withsub );
157
+		return $this->getSearchAttributesBase($this->searchConfig, $path, array('type'), $withsub);
158 158
 	}
159 159
 
160 160
 
@@ -165,9 +165,9 @@  discard block
 block discarded – undo
165 165
 	 * @param string|null $name Name of the implementation, will be from configuration (or Default) if null
166 166
 	 * @return mixed Manager for different extensions, e.g stock, tags, locations, etc.
167 167
 	 */
168
-	public function getSubManager( $manager, $name = null )
168
+	public function getSubManager($manager, $name = null)
169 169
 	{
170
-		return $this->getSubManagerBase( 'customer', 'lists/' . $manager, ( $name === null ? 'Laravel' : $name ) );
170
+		return $this->getSubManagerBase('customer', 'lists/'.$manager, ($name === null ? 'Laravel' : $name));
171 171
 	}
172 172
 
173 173
 
Please login to merge, or discard this patch.