@@ -21,7 +21,7 @@ discard block |
||
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 |
||
31 | 31 | public function migrate() |
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 |
||
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.code', 'unitCustomer' ) ); |
|
77 | - $customerItems = $customerManager->searchItems( $search ); |
|
76 | + $search->setConditions($search->compare('=~', 'customer.code', 'unitCustomer')); |
|
77 | + $customerItems = $customerManager->searchItems($search); |
|
78 | 78 | |
79 | 79 | $search = $customerAddressManager->createSearch(); |
80 | - $search->setConditions( $search->compare( '=~', 'customer.address.email', 'unitCustomer' ) ); |
|
81 | - $addressItems = $customerAddressManager->searchItems( $search ); |
|
80 | + $search->setConditions($search->compare('=~', 'customer.address.email', 'unitCustomer')); |
|
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 | } |
@@ -24,8 +24,8 @@ discard block |
||
24 | 24 | { |
25 | 25 | $this->context = \TestHelper::getContext(); |
26 | 26 | $this->editor = $this->context->getEditor(); |
27 | - $manager = \Aimeos\MShop\Customer\Manager\Factory::createManager( $this->context, 'Laravel' ); |
|
28 | - $this->object = $manager->getSubManager( 'lists', 'Laravel' ); |
|
27 | + $manager = \Aimeos\MShop\Customer\Manager\Factory::createManager($this->context, 'Laravel'); |
|
28 | + $this->object = $manager->getSubManager('lists', 'Laravel'); |
|
29 | 29 | } |
30 | 30 | |
31 | 31 | |
@@ -37,36 +37,36 @@ discard block |
||
37 | 37 | */ |
38 | 38 | protected function tearDown() |
39 | 39 | { |
40 | - unset( $this->object, $this->context ); |
|
40 | + unset($this->object, $this->context); |
|
41 | 41 | } |
42 | 42 | |
43 | 43 | |
44 | 44 | public function testCleanup() |
45 | 45 | { |
46 | - $this->object->cleanup( array( -1 ) ); |
|
46 | + $this->object->cleanup(array( -1 )); |
|
47 | 47 | } |
48 | 48 | |
49 | 49 | |
50 | 50 | public function testAggregate() |
51 | 51 | { |
52 | - $search = $this->object->createSearch( true ); |
|
52 | + $search = $this->object->createSearch(true); |
|
53 | 53 | $expr = array( |
54 | 54 | $search->getConditions(), |
55 | - $search->compare( '==', 'customer.lists.editor', 'ai-laravel:unittest' ), |
|
55 | + $search->compare('==', 'customer.lists.editor', 'ai-laravel:unittest'), |
|
56 | 56 | ); |
57 | - $search->setConditions( $search->combine( '&&', $expr ) ); |
|
57 | + $search->setConditions($search->combine('&&', $expr)); |
|
58 | 58 | |
59 | - $result = $this->object->aggregate( $search, 'customer.lists.domain' ); |
|
59 | + $result = $this->object->aggregate($search, 'customer.lists.domain'); |
|
60 | 60 | |
61 | - $this->assertEquals( 1, count( $result ) ); |
|
62 | - $this->assertArrayHasKey( 'text', $result ); |
|
63 | - $this->assertEquals( 4, $result['text'] ); |
|
61 | + $this->assertEquals(1, count($result)); |
|
62 | + $this->assertArrayHasKey('text', $result); |
|
63 | + $this->assertEquals(4, $result['text']); |
|
64 | 64 | } |
65 | 65 | |
66 | 66 | |
67 | 67 | public function testCreateItem() |
68 | 68 | { |
69 | - $this->assertInstanceOf( '\\Aimeos\\MShop\\Common\\Item\\Lists\\Iface', $this->object->createItem() ); |
|
69 | + $this->assertInstanceOf('\\Aimeos\\MShop\\Common\\Item\\Lists\\Iface', $this->object->createItem()); |
|
70 | 70 | } |
71 | 71 | |
72 | 72 | |
@@ -74,13 +74,13 @@ discard block |
||
74 | 74 | { |
75 | 75 | $search = $this->object->createSearch(); |
76 | 76 | $search->setSlice(0, 1); |
77 | - $results = $this->object->searchItems( $search ); |
|
77 | + $results = $this->object->searchItems($search); |
|
78 | 78 | |
79 | - if( ( $item = reset( $results ) ) === false ) { |
|
80 | - throw new \RuntimeException( 'No item found' ); |
|
79 | + if (($item = reset($results)) === false) { |
|
80 | + throw new \RuntimeException('No item found'); |
|
81 | 81 | } |
82 | 82 | |
83 | - $this->assertEquals( $item, $this->object->getItem( $item->getId() ) ); |
|
83 | + $this->assertEquals($item, $this->object->getItem($item->getId())); |
|
84 | 84 | } |
85 | 85 | |
86 | 86 | |
@@ -88,144 +88,144 @@ discard block |
||
88 | 88 | { |
89 | 89 | $search = $this->object->createSearch(); |
90 | 90 | $search->setSlice(0, 1); |
91 | - $items = $this->object->searchItems( $search ); |
|
91 | + $items = $this->object->searchItems($search); |
|
92 | 92 | |
93 | - if( ( $item = reset( $items ) ) === false ) { |
|
94 | - throw new \RuntimeException( 'No item found' ); |
|
93 | + if (($item = reset($items)) === false) { |
|
94 | + throw new \RuntimeException('No item found'); |
|
95 | 95 | } |
96 | 96 | |
97 | - $item->setId( null ); |
|
98 | - $item->setDomain( 'unittest' ); |
|
99 | - $this->object->saveItem( $item ); |
|
100 | - $itemSaved = $this->object->getItem( $item->getId() ); |
|
97 | + $item->setId(null); |
|
98 | + $item->setDomain('unittest'); |
|
99 | + $this->object->saveItem($item); |
|
100 | + $itemSaved = $this->object->getItem($item->getId()); |
|
101 | 101 | |
102 | 102 | $itemExp = clone $itemSaved; |
103 | - $itemExp->setDomain( 'unittest2' ); |
|
104 | - $this->object->saveItem( $itemExp ); |
|
105 | - $itemUpd = $this->object->getItem( $itemExp->getId() ); |
|
106 | - |
|
107 | - $this->object->deleteItem( $itemSaved->getId() ); |
|
108 | - |
|
109 | - |
|
110 | - $this->assertTrue( $item->getId() !== null ); |
|
111 | - $this->assertTrue( $itemSaved->getType() !== null ); |
|
112 | - $this->assertEquals( $item->getId(), $itemSaved->getId() ); |
|
113 | - $this->assertEquals( $item->getSiteId(), $itemSaved->getSiteId() ); |
|
114 | - $this->assertEquals( $item->getParentId(), $itemSaved->getParentId() ); |
|
115 | - $this->assertEquals( $item->getTypeId(), $itemSaved->getTypeId() ); |
|
116 | - $this->assertEquals( $item->getRefId(), $itemSaved->getRefId() ); |
|
117 | - $this->assertEquals( $item->getDomain(), $itemSaved->getDomain() ); |
|
118 | - $this->assertEquals( $item->getDateStart(), $itemSaved->getDateStart() ); |
|
119 | - $this->assertEquals( $item->getDateEnd(), $itemSaved->getDateEnd() ); |
|
120 | - $this->assertEquals( $item->getPosition(), $itemSaved->getPosition() ); |
|
121 | - $this->assertEquals( $this->editor, $itemSaved->getEditor() ); |
|
103 | + $itemExp->setDomain('unittest2'); |
|
104 | + $this->object->saveItem($itemExp); |
|
105 | + $itemUpd = $this->object->getItem($itemExp->getId()); |
|
106 | + |
|
107 | + $this->object->deleteItem($itemSaved->getId()); |
|
108 | + |
|
109 | + |
|
110 | + $this->assertTrue($item->getId() !== null); |
|
111 | + $this->assertTrue($itemSaved->getType() !== null); |
|
112 | + $this->assertEquals($item->getId(), $itemSaved->getId()); |
|
113 | + $this->assertEquals($item->getSiteId(), $itemSaved->getSiteId()); |
|
114 | + $this->assertEquals($item->getParentId(), $itemSaved->getParentId()); |
|
115 | + $this->assertEquals($item->getTypeId(), $itemSaved->getTypeId()); |
|
116 | + $this->assertEquals($item->getRefId(), $itemSaved->getRefId()); |
|
117 | + $this->assertEquals($item->getDomain(), $itemSaved->getDomain()); |
|
118 | + $this->assertEquals($item->getDateStart(), $itemSaved->getDateStart()); |
|
119 | + $this->assertEquals($item->getDateEnd(), $itemSaved->getDateEnd()); |
|
120 | + $this->assertEquals($item->getPosition(), $itemSaved->getPosition()); |
|
121 | + $this->assertEquals($this->editor, $itemSaved->getEditor()); |
|
122 | 122 | $this->assertStringStartsWith(date('Y-m-d', time()), $itemSaved->getTimeCreated()); |
123 | 123 | $this->assertStringStartsWith(date('Y-m-d', time()), $itemSaved->getTimeModified()); |
124 | 124 | |
125 | - $this->assertEquals( $this->editor, $itemSaved->getEditor() ); |
|
126 | - $this->assertRegExp( '/\d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2}/', $itemSaved->getTimeCreated() ); |
|
127 | - $this->assertRegExp('/\d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2}/', $itemSaved->getTimeModified() ); |
|
128 | - |
|
129 | - $this->assertTrue( $itemUpd->getType() !== null ); |
|
130 | - $this->assertEquals( $itemExp->getId(), $itemUpd->getId() ); |
|
131 | - $this->assertEquals( $itemExp->getSiteId(), $itemUpd->getSiteId() ); |
|
132 | - $this->assertEquals( $itemExp->getParentId(), $itemUpd->getParentId() ); |
|
133 | - $this->assertEquals( $itemExp->getTypeId(), $itemUpd->getTypeId() ); |
|
134 | - $this->assertEquals( $itemExp->getRefId(), $itemUpd->getRefId() ); |
|
135 | - $this->assertEquals( $itemExp->getDomain(), $itemUpd->getDomain() ); |
|
136 | - $this->assertEquals( $itemExp->getDateStart(), $itemUpd->getDateStart() ); |
|
137 | - $this->assertEquals( $itemExp->getDateEnd(), $itemUpd->getDateEnd() ); |
|
138 | - $this->assertEquals( $itemExp->getPosition(), $itemUpd->getPosition() ); |
|
139 | - |
|
140 | - $this->assertEquals( $this->editor, $itemUpd->getEditor() ); |
|
141 | - $this->assertEquals( $itemExp->getTimeCreated(), $itemUpd->getTimeCreated() ); |
|
142 | - $this->assertRegExp( '/\d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2}/', $itemUpd->getTimeModified() ); |
|
125 | + $this->assertEquals($this->editor, $itemSaved->getEditor()); |
|
126 | + $this->assertRegExp('/\d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2}/', $itemSaved->getTimeCreated()); |
|
127 | + $this->assertRegExp('/\d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2}/', $itemSaved->getTimeModified()); |
|
128 | + |
|
129 | + $this->assertTrue($itemUpd->getType() !== null); |
|
130 | + $this->assertEquals($itemExp->getId(), $itemUpd->getId()); |
|
131 | + $this->assertEquals($itemExp->getSiteId(), $itemUpd->getSiteId()); |
|
132 | + $this->assertEquals($itemExp->getParentId(), $itemUpd->getParentId()); |
|
133 | + $this->assertEquals($itemExp->getTypeId(), $itemUpd->getTypeId()); |
|
134 | + $this->assertEquals($itemExp->getRefId(), $itemUpd->getRefId()); |
|
135 | + $this->assertEquals($itemExp->getDomain(), $itemUpd->getDomain()); |
|
136 | + $this->assertEquals($itemExp->getDateStart(), $itemUpd->getDateStart()); |
|
137 | + $this->assertEquals($itemExp->getDateEnd(), $itemUpd->getDateEnd()); |
|
138 | + $this->assertEquals($itemExp->getPosition(), $itemUpd->getPosition()); |
|
139 | + |
|
140 | + $this->assertEquals($this->editor, $itemUpd->getEditor()); |
|
141 | + $this->assertEquals($itemExp->getTimeCreated(), $itemUpd->getTimeCreated()); |
|
142 | + $this->assertRegExp('/\d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2}/', $itemUpd->getTimeModified()); |
|
143 | 143 | |
144 | 144 | $this->setExpectedException('\\Aimeos\\MShop\\Exception'); |
145 | - $this->object->getItem( $itemSaved->getId() ); |
|
145 | + $this->object->getItem($itemSaved->getId()); |
|
146 | 146 | } |
147 | 147 | |
148 | 148 | |
149 | 149 | public function testMoveItemLastToFront() |
150 | 150 | { |
151 | 151 | $listItems = $this->getListItems(); |
152 | - $this->assertGreaterThan( 1, count( $listItems ) ); |
|
152 | + $this->assertGreaterThan(1, count($listItems)); |
|
153 | 153 | |
154 | - if( ( $first = reset( $listItems ) ) === false ) { |
|
155 | - throw new \RuntimeException( 'No first customer list item' ); |
|
154 | + if (($first = reset($listItems)) === false) { |
|
155 | + throw new \RuntimeException('No first customer list item'); |
|
156 | 156 | } |
157 | 157 | |
158 | - if( ( $last = end( $listItems ) ) === false ) { |
|
159 | - throw new \RuntimeException( 'No last customer list item' ); |
|
158 | + if (($last = end($listItems)) === false) { |
|
159 | + throw new \RuntimeException('No last customer list item'); |
|
160 | 160 | } |
161 | 161 | |
162 | - $this->object->moveItem( $last->getId(), $first->getId() ); |
|
162 | + $this->object->moveItem($last->getId(), $first->getId()); |
|
163 | 163 | |
164 | - $newFirst = $this->object->getItem( $last->getId() ); |
|
165 | - $newSecond = $this->object->getItem( $first->getId() ); |
|
164 | + $newFirst = $this->object->getItem($last->getId()); |
|
165 | + $newSecond = $this->object->getItem($first->getId()); |
|
166 | 166 | |
167 | - $this->object->moveItem( $last->getId() ); |
|
167 | + $this->object->moveItem($last->getId()); |
|
168 | 168 | |
169 | - $this->assertEquals( 1, $newFirst->getPosition() ); |
|
170 | - $this->assertEquals( 2, $newSecond->getPosition() ); |
|
169 | + $this->assertEquals(1, $newFirst->getPosition()); |
|
170 | + $this->assertEquals(2, $newSecond->getPosition()); |
|
171 | 171 | } |
172 | 172 | |
173 | 173 | |
174 | 174 | public function testMoveItemFirstToLast() |
175 | 175 | { |
176 | 176 | $listItems = $this->getListItems(); |
177 | - $this->assertGreaterThan( 1, count( $listItems ) ); |
|
177 | + $this->assertGreaterThan(1, count($listItems)); |
|
178 | 178 | |
179 | - if( ( $first = reset( $listItems ) ) === false ) { |
|
180 | - throw new \RuntimeException( 'No first customer list item' ); |
|
179 | + if (($first = reset($listItems)) === false) { |
|
180 | + throw new \RuntimeException('No first customer list item'); |
|
181 | 181 | } |
182 | 182 | |
183 | - if( ( $second = next( $listItems ) ) === false ) { |
|
184 | - throw new \RuntimeException( 'No second customer list item' ); |
|
183 | + if (($second = next($listItems)) === false) { |
|
184 | + throw new \RuntimeException('No second customer list item'); |
|
185 | 185 | } |
186 | 186 | |
187 | - if( ( $last = end( $listItems ) ) === false ) { |
|
188 | - throw new \RuntimeException( 'No last customer list item' ); |
|
187 | + if (($last = end($listItems)) === false) { |
|
188 | + throw new \RuntimeException('No last customer list item'); |
|
189 | 189 | } |
190 | 190 | |
191 | - $this->object->moveItem( $first->getId() ); |
|
191 | + $this->object->moveItem($first->getId()); |
|
192 | 192 | |
193 | - $newBefore = $this->object->getItem( $last->getId() ); |
|
194 | - $newLast = $this->object->getItem( $first->getId() ); |
|
193 | + $newBefore = $this->object->getItem($last->getId()); |
|
194 | + $newLast = $this->object->getItem($first->getId()); |
|
195 | 195 | |
196 | - $this->object->moveItem( $first->getId(), $second->getId() ); |
|
196 | + $this->object->moveItem($first->getId(), $second->getId()); |
|
197 | 197 | |
198 | - $this->assertEquals( $last->getPosition() - 1, $newBefore->getPosition() ); |
|
199 | - $this->assertEquals( $last->getPosition(), $newLast->getPosition() ); |
|
198 | + $this->assertEquals($last->getPosition() - 1, $newBefore->getPosition()); |
|
199 | + $this->assertEquals($last->getPosition(), $newLast->getPosition()); |
|
200 | 200 | } |
201 | 201 | |
202 | 202 | |
203 | 203 | public function testMoveItemFirstUp() |
204 | 204 | { |
205 | 205 | $listItems = $this->getListItems(); |
206 | - $this->assertGreaterThan( 1, count( $listItems ) ); |
|
206 | + $this->assertGreaterThan(1, count($listItems)); |
|
207 | 207 | |
208 | - if( ( $first = reset( $listItems ) ) === false ) { |
|
209 | - throw new \RuntimeException( 'No first customer list item' ); |
|
208 | + if (($first = reset($listItems)) === false) { |
|
209 | + throw new \RuntimeException('No first customer list item'); |
|
210 | 210 | } |
211 | 211 | |
212 | - if( ( $second = next( $listItems ) ) === false ) { |
|
213 | - throw new \RuntimeException( 'No second customer list item' ); |
|
212 | + if (($second = next($listItems)) === false) { |
|
213 | + throw new \RuntimeException('No second customer list item'); |
|
214 | 214 | } |
215 | 215 | |
216 | - if( ( $last = end( $listItems ) ) === false ) { |
|
217 | - throw new \RuntimeException( 'No last customer list item' ); |
|
216 | + if (($last = end($listItems)) === false) { |
|
217 | + throw new \RuntimeException('No last customer list item'); |
|
218 | 218 | } |
219 | 219 | |
220 | - $this->object->moveItem( $first->getId(), $last->getId() ); |
|
220 | + $this->object->moveItem($first->getId(), $last->getId()); |
|
221 | 221 | |
222 | - $newLast = $this->object->getItem( $last->getId() ); |
|
223 | - $newUp = $this->object->getItem( $first->getId() ); |
|
222 | + $newLast = $this->object->getItem($last->getId()); |
|
223 | + $newUp = $this->object->getItem($first->getId()); |
|
224 | 224 | |
225 | - $this->object->moveItem( $first->getId(), $second->getId() ); |
|
225 | + $this->object->moveItem($first->getId(), $second->getId()); |
|
226 | 226 | |
227 | - $this->assertEquals( $last->getPosition() - 1, $newUp->getPosition() ); |
|
228 | - $this->assertEquals( $last->getPosition(), $newLast->getPosition() ); |
|
227 | + $this->assertEquals($last->getPosition() - 1, $newUp->getPosition()); |
|
228 | + $this->assertEquals($last->getPosition(), $newLast->getPosition()); |
|
229 | 229 | } |
230 | 230 | |
231 | 231 | |
@@ -235,39 +235,39 @@ discard block |
||
235 | 235 | $search = $this->object->createSearch(); |
236 | 236 | |
237 | 237 | $expr = array(); |
238 | - $expr[] = $search->compare( '!=', 'customer.lists.id', null ); |
|
239 | - $expr[] = $search->compare( '!=', 'customer.lists.siteid', null ); |
|
240 | - $expr[] = $search->compare( '>', 'customer.lists.parentid', 0 ); |
|
241 | - $expr[] = $search->compare( '==', 'customer.lists.domain', 'text' ); |
|
242 | - $expr[] = $search->compare( '>', 'customer.lists.typeid', 0 ); |
|
243 | - $expr[] = $search->compare( '>', 'customer.lists.refid', 0 ); |
|
244 | - $expr[] = $search->compare( '==', 'customer.lists.datestart', '2010-01-01 00:00:00' ); |
|
245 | - $expr[] = $search->compare( '==', 'customer.lists.dateend', '2100-01-01 00:00:00' ); |
|
246 | - $expr[] = $search->compare( '!=', 'customer.lists.config', null ); |
|
247 | - $expr[] = $search->compare( '>', 'customer.lists.position', 1 ); |
|
248 | - $expr[] = $search->compare( '==', 'customer.lists.status', 1 ); |
|
249 | - $expr[] = $search->compare( '>=', 'customer.lists.mtime', '1970-01-01 00:00:00' ); |
|
250 | - $expr[] = $search->compare( '>=', 'customer.lists.ctime', '1970-01-01 00:00:00' ); |
|
251 | - $expr[] = $search->compare( '==', 'customer.lists.editor', $this->editor ); |
|
252 | - |
|
253 | - $expr[] = $search->compare( '!=', 'customer.lists.type.id', 0 ); |
|
254 | - $expr[] = $search->compare( '!=', 'customer.lists.type.siteid', null ); |
|
255 | - $expr[] = $search->compare( '==', 'customer.lists.type.code', 'default' ); |
|
256 | - $expr[] = $search->compare( '==', 'customer.lists.type.domain', 'text' ); |
|
257 | - $expr[] = $search->compare( '==', 'customer.lists.type.label', 'Standard' ); |
|
258 | - $expr[] = $search->compare( '==', 'customer.lists.type.status', 1 ); |
|
259 | - $expr[] = $search->compare( '>=', 'customer.lists.type.mtime', '1970-01-01 00:00:00' ); |
|
260 | - $expr[] = $search->compare( '>=', 'customer.lists.type.ctime', '1970-01-01 00:00:00' ); |
|
261 | - $expr[] = $search->compare( '==', 'customer.lists.type.editor', $this->editor ); |
|
262 | - |
|
263 | - $search->setConditions( $search->combine( '&&', $expr ) ); |
|
238 | + $expr[] = $search->compare('!=', 'customer.lists.id', null); |
|
239 | + $expr[] = $search->compare('!=', 'customer.lists.siteid', null); |
|
240 | + $expr[] = $search->compare('>', 'customer.lists.parentid', 0); |
|
241 | + $expr[] = $search->compare('==', 'customer.lists.domain', 'text'); |
|
242 | + $expr[] = $search->compare('>', 'customer.lists.typeid', 0); |
|
243 | + $expr[] = $search->compare('>', 'customer.lists.refid', 0); |
|
244 | + $expr[] = $search->compare('==', 'customer.lists.datestart', '2010-01-01 00:00:00'); |
|
245 | + $expr[] = $search->compare('==', 'customer.lists.dateend', '2100-01-01 00:00:00'); |
|
246 | + $expr[] = $search->compare('!=', 'customer.lists.config', null); |
|
247 | + $expr[] = $search->compare('>', 'customer.lists.position', 1); |
|
248 | + $expr[] = $search->compare('==', 'customer.lists.status', 1); |
|
249 | + $expr[] = $search->compare('>=', 'customer.lists.mtime', '1970-01-01 00:00:00'); |
|
250 | + $expr[] = $search->compare('>=', 'customer.lists.ctime', '1970-01-01 00:00:00'); |
|
251 | + $expr[] = $search->compare('==', 'customer.lists.editor', $this->editor); |
|
252 | + |
|
253 | + $expr[] = $search->compare('!=', 'customer.lists.type.id', 0); |
|
254 | + $expr[] = $search->compare('!=', 'customer.lists.type.siteid', null); |
|
255 | + $expr[] = $search->compare('==', 'customer.lists.type.code', 'default'); |
|
256 | + $expr[] = $search->compare('==', 'customer.lists.type.domain', 'text'); |
|
257 | + $expr[] = $search->compare('==', 'customer.lists.type.label', 'Standard'); |
|
258 | + $expr[] = $search->compare('==', 'customer.lists.type.status', 1); |
|
259 | + $expr[] = $search->compare('>=', 'customer.lists.type.mtime', '1970-01-01 00:00:00'); |
|
260 | + $expr[] = $search->compare('>=', 'customer.lists.type.ctime', '1970-01-01 00:00:00'); |
|
261 | + $expr[] = $search->compare('==', 'customer.lists.type.editor', $this->editor); |
|
262 | + |
|
263 | + $search->setConditions($search->combine('&&', $expr)); |
|
264 | 264 | $search->setSlice(0, 1); |
265 | - $results = $this->object->searchItems( $search, array(), $total ); |
|
266 | - $this->assertEquals( 1, count( $results ) ); |
|
267 | - $this->assertEquals( 2, $total ); |
|
265 | + $results = $this->object->searchItems($search, array(), $total); |
|
266 | + $this->assertEquals(1, count($results)); |
|
267 | + $this->assertEquals(2, $total); |
|
268 | 268 | |
269 | - foreach($results as $itemId => $item) { |
|
270 | - $this->assertEquals( $itemId, $item->getId() ); |
|
269 | + foreach ($results as $itemId => $item) { |
|
270 | + $this->assertEquals($itemId, $item->getId()); |
|
271 | 271 | } |
272 | 272 | } |
273 | 273 | |
@@ -275,8 +275,8 @@ discard block |
||
275 | 275 | public function testSearchItemsNoCriteria() |
276 | 276 | { |
277 | 277 | $search = $this->object->createSearch(); |
278 | - $search->setConditions( $search->compare( '==', 'customer.lists.editor', $this->editor ) ); |
|
279 | - $this->assertEquals( 4, count( $this->object->searchItems($search) ) ); |
|
278 | + $search->setConditions($search->compare('==', 'customer.lists.editor', $this->editor)); |
|
279 | + $this->assertEquals(4, count($this->object->searchItems($search))); |
|
280 | 280 | } |
281 | 281 | |
282 | 282 | |
@@ -284,48 +284,48 @@ discard block |
||
284 | 284 | { |
285 | 285 | $search = $this->object->createSearch(true); |
286 | 286 | $conditions = array( |
287 | - $search->compare( '==', 'customer.lists.editor', $this->editor ), |
|
287 | + $search->compare('==', 'customer.lists.editor', $this->editor), |
|
288 | 288 | $search->getConditions() |
289 | 289 | ); |
290 | - $search->setConditions( $search->combine( '&&', $conditions ) ); |
|
291 | - $this->assertEquals( 4, count( $this->object->searchItems($search) ) ); |
|
290 | + $search->setConditions($search->combine('&&', $conditions)); |
|
291 | + $this->assertEquals(4, count($this->object->searchItems($search))); |
|
292 | 292 | } |
293 | 293 | |
294 | 294 | |
295 | 295 | public function testGetSubManager() |
296 | 296 | { |
297 | - $this->assertInstanceOf( '\\Aimeos\\MShop\\Common\\Manager\\Iface', $this->object->getSubManager('type') ); |
|
298 | - $this->assertInstanceOf( '\\Aimeos\\MShop\\Common\\Manager\\Iface', $this->object->getSubManager('type', 'Standard') ); |
|
297 | + $this->assertInstanceOf('\\Aimeos\\MShop\\Common\\Manager\\Iface', $this->object->getSubManager('type')); |
|
298 | + $this->assertInstanceOf('\\Aimeos\\MShop\\Common\\Manager\\Iface', $this->object->getSubManager('type', 'Standard')); |
|
299 | 299 | |
300 | - $this->setExpectedException( '\\Aimeos\\MShop\\Exception' ); |
|
301 | - $this->object->getSubManager( 'unknown' ); |
|
300 | + $this->setExpectedException('\\Aimeos\\MShop\\Exception'); |
|
301 | + $this->object->getSubManager('unknown'); |
|
302 | 302 | } |
303 | 303 | |
304 | 304 | |
305 | 305 | protected function getListItems() |
306 | 306 | { |
307 | - $manager = \Aimeos\MShop\Customer\Manager\Factory::createManager( $this->context, 'Laravel' ); |
|
307 | + $manager = \Aimeos\MShop\Customer\Manager\Factory::createManager($this->context, 'Laravel'); |
|
308 | 308 | |
309 | 309 | $search = $manager->createSearch(); |
310 | - $search->setConditions( $search->compare( '==', 'customer.code', 'unitCustomer3' ) ); |
|
311 | - $search->setSlice( 0, 1 ); |
|
310 | + $search->setConditions($search->compare('==', 'customer.code', 'unitCustomer3')); |
|
311 | + $search->setSlice(0, 1); |
|
312 | 312 | |
313 | - $results = $manager->searchItems( $search ); |
|
313 | + $results = $manager->searchItems($search); |
|
314 | 314 | |
315 | - if( ( $item = reset( $results ) ) === false ) { |
|
316 | - throw new \RuntimeException( 'No customer item found' ); |
|
315 | + if (($item = reset($results)) === false) { |
|
316 | + throw new \RuntimeException('No customer item found'); |
|
317 | 317 | } |
318 | 318 | |
319 | 319 | $search = $this->object->createSearch(); |
320 | 320 | $expr = array( |
321 | - $search->compare( '==', 'customer.lists.parentid', $item->getId() ), |
|
322 | - $search->compare( '==', 'customer.lists.domain', 'text' ), |
|
323 | - $search->compare( '==', 'customer.lists.editor', $this->editor ), |
|
324 | - $search->compare( '==', 'customer.lists.type.code', 'default' ), |
|
321 | + $search->compare('==', 'customer.lists.parentid', $item->getId()), |
|
322 | + $search->compare('==', 'customer.lists.domain', 'text'), |
|
323 | + $search->compare('==', 'customer.lists.editor', $this->editor), |
|
324 | + $search->compare('==', 'customer.lists.type.code', 'default'), |
|
325 | 325 | ); |
326 | - $search->setConditions( $search->combine( '&&', $expr ) ); |
|
327 | - $search->setSortations( array( $search->sort( '+', 'customer.lists.position' ) ) ); |
|
326 | + $search->setConditions($search->combine('&&', $expr)); |
|
327 | + $search->setSortations(array($search->sort('+', 'customer.lists.position'))); |
|
328 | 328 | |
329 | - return $this->object->searchItems( $search ); |
|
329 | + return $this->object->searchItems($search); |
|
330 | 330 | } |
331 | 331 | } |
@@ -240,11 +240,11 @@ discard block |
||
240 | 240 | * |
241 | 241 | * @param array $siteids List of IDs for sites whose entries should be deleted |
242 | 242 | */ |
243 | - public function cleanup( array $siteids ) |
|
243 | + public function cleanup(array $siteids) |
|
244 | 244 | { |
245 | 245 | $path = 'mshop/customer/manager/submanagers'; |
246 | - foreach( $this->getContext()->getConfig()->get( $path, array( 'address', 'lists' ) ) as $domain ) { |
|
247 | - $this->getSubManager( $domain )->cleanup( $siteids ); |
|
246 | + foreach ($this->getContext()->getConfig()->get($path, array('address', 'lists')) as $domain) { |
|
247 | + $this->getSubManager($domain)->cleanup($siteids); |
|
248 | 248 | } |
249 | 249 | } |
250 | 250 | |
@@ -265,10 +265,10 @@ discard block |
||
265 | 265 | * |
266 | 266 | * @param array $ids List of IDs |
267 | 267 | */ |
268 | - public function deleteItems( array $ids ) |
|
268 | + public function deleteItems(array $ids) |
|
269 | 269 | { |
270 | 270 | $path = 'mshop/customer/manager/laravel/delete'; |
271 | - $this->deleteItemsBase( $ids, $path, false ); |
|
271 | + $this->deleteItemsBase($ids, $path, false); |
|
272 | 272 | } |
273 | 273 | |
274 | 274 | |
@@ -278,11 +278,11 @@ discard block |
||
278 | 278 | * @param boolean $withsub Return also attributes of sub-managers if true |
279 | 279 | * @return array List of attribute items implementing \Aimeos\MW\Criteria\Attribute\Iface |
280 | 280 | */ |
281 | - public function getSearchAttributes( $withsub = true ) |
|
281 | + public function getSearchAttributes($withsub = true) |
|
282 | 282 | { |
283 | 283 | $path = 'mshop/customer/manager/submanagers'; |
284 | 284 | |
285 | - return $this->getSearchAttributesBase( $this->searchConfig, $path, array( 'address', 'lists' ), $withsub ); |
|
285 | + return $this->getSearchAttributesBase($this->searchConfig, $path, array('address', 'lists'), $withsub); |
|
286 | 286 | } |
287 | 287 | |
288 | 288 | |
@@ -292,27 +292,27 @@ discard block |
||
292 | 292 | * @param \Aimeos\MShop\Customer\Item\Iface $item Customer item object |
293 | 293 | * @param boolean $fetch True if the new ID should be returned in the item |
294 | 294 | */ |
295 | - public function saveItem( \Aimeos\MShop\Common\Item\Iface $item, $fetch = true ) |
|
295 | + public function saveItem(\Aimeos\MShop\Common\Item\Iface $item, $fetch = true) |
|
296 | 296 | { |
297 | 297 | $iface = '\\Aimeos\\MShop\\Customer\\Item\\Iface'; |
298 | - if( !( $item instanceof $iface ) ) { |
|
299 | - throw new \Aimeos\MShop\Customer\Exception( sprintf( 'Object is not of required type "%1$s"', $iface ) ); |
|
298 | + if (!($item instanceof $iface)) { |
|
299 | + throw new \Aimeos\MShop\Customer\Exception(sprintf('Object is not of required type "%1$s"', $iface)); |
|
300 | 300 | } |
301 | 301 | |
302 | - if( !$item->isModified() ) { return; } |
|
302 | + if (!$item->isModified()) { return; } |
|
303 | 303 | |
304 | 304 | $context = $this->getContext(); |
305 | 305 | $dbm = $context->getDatabaseManager(); |
306 | 306 | $dbname = $this->getResourceName(); |
307 | - $conn = $dbm->acquire( $dbname ); |
|
307 | + $conn = $dbm->acquire($dbname); |
|
308 | 308 | |
309 | 309 | try |
310 | 310 | { |
311 | 311 | $id = $item->getId(); |
312 | - $date = date( 'Y-m-d H:i:s' ); |
|
312 | + $date = date('Y-m-d H:i:s'); |
|
313 | 313 | $billingAddress = $item->getPaymentAddress(); |
314 | 314 | |
315 | - if( $id === null ) |
|
315 | + if ($id === null) |
|
316 | 316 | { |
317 | 317 | /** mshop/customer/manager/laravel/insert |
318 | 318 | * Inserts a new customer record into the database table |
@@ -376,47 +376,47 @@ discard block |
||
376 | 376 | $path = 'mshop/customer/manager/laravel/update'; |
377 | 377 | } |
378 | 378 | |
379 | - $stmt = $this->getCachedStatement( $conn, $path ); |
|
380 | - |
|
381 | - $stmt->bind( 1, $item->getCode() ); |
|
382 | - $stmt->bind( 2, $billingAddress->getCompany() ); |
|
383 | - $stmt->bind( 3, $billingAddress->getVatID() ); |
|
384 | - $stmt->bind( 4, $billingAddress->getSalutation() ); |
|
385 | - $stmt->bind( 5, $billingAddress->getTitle() ); |
|
386 | - $stmt->bind( 6, $billingAddress->getFirstname() ); |
|
387 | - $stmt->bind( 7, $billingAddress->getLastname() ); |
|
388 | - $stmt->bind( 8, $billingAddress->getAddress1() ); |
|
389 | - $stmt->bind( 9, $billingAddress->getAddress2() ); |
|
390 | - $stmt->bind( 10, $billingAddress->getAddress3() ); |
|
391 | - $stmt->bind( 11, $billingAddress->getPostal() ); |
|
392 | - $stmt->bind( 12, $billingAddress->getCity() ); |
|
393 | - $stmt->bind( 13, $billingAddress->getState() ); |
|
394 | - $stmt->bind( 14, $billingAddress->getCountryId() ); |
|
395 | - $stmt->bind( 15, $billingAddress->getLanguageId() ); |
|
396 | - $stmt->bind( 16, $billingAddress->getTelephone() ); |
|
397 | - $stmt->bind( 17, $billingAddress->getTelefax() ); |
|
398 | - $stmt->bind( 18, $billingAddress->getWebsite() ); |
|
399 | - $stmt->bind( 19, $billingAddress->getEmail() ); |
|
400 | - $stmt->bind( 20, $billingAddress->getLongitude() ); |
|
401 | - $stmt->bind( 21, $billingAddress->getLatitude() ); |
|
402 | - $stmt->bind( 22, $item->getLabel() ); |
|
403 | - $stmt->bind( 23, $item->getBirthday() ); |
|
404 | - $stmt->bind( 24, $item->getStatus(), \Aimeos\MW\DB\Statement\Base::PARAM_INT ); |
|
405 | - $stmt->bind( 25, $item->getDateVerified() ); |
|
406 | - $stmt->bind( 26, $item->getPassword() ); |
|
407 | - $stmt->bind( 27, $date ); // Modification time |
|
408 | - $stmt->bind( 28, $context->getEditor() ); |
|
409 | - |
|
410 | - if( $id !== null ) { |
|
411 | - $stmt->bind( 29, $id, \Aimeos\MW\DB\Statement\Base::PARAM_INT ); |
|
412 | - $item->setId( $id ); |
|
379 | + $stmt = $this->getCachedStatement($conn, $path); |
|
380 | + |
|
381 | + $stmt->bind(1, $item->getCode()); |
|
382 | + $stmt->bind(2, $billingAddress->getCompany()); |
|
383 | + $stmt->bind(3, $billingAddress->getVatID()); |
|
384 | + $stmt->bind(4, $billingAddress->getSalutation()); |
|
385 | + $stmt->bind(5, $billingAddress->getTitle()); |
|
386 | + $stmt->bind(6, $billingAddress->getFirstname()); |
|
387 | + $stmt->bind(7, $billingAddress->getLastname()); |
|
388 | + $stmt->bind(8, $billingAddress->getAddress1()); |
|
389 | + $stmt->bind(9, $billingAddress->getAddress2()); |
|
390 | + $stmt->bind(10, $billingAddress->getAddress3()); |
|
391 | + $stmt->bind(11, $billingAddress->getPostal()); |
|
392 | + $stmt->bind(12, $billingAddress->getCity()); |
|
393 | + $stmt->bind(13, $billingAddress->getState()); |
|
394 | + $stmt->bind(14, $billingAddress->getCountryId()); |
|
395 | + $stmt->bind(15, $billingAddress->getLanguageId()); |
|
396 | + $stmt->bind(16, $billingAddress->getTelephone()); |
|
397 | + $stmt->bind(17, $billingAddress->getTelefax()); |
|
398 | + $stmt->bind(18, $billingAddress->getWebsite()); |
|
399 | + $stmt->bind(19, $billingAddress->getEmail()); |
|
400 | + $stmt->bind(20, $billingAddress->getLongitude()); |
|
401 | + $stmt->bind(21, $billingAddress->getLatitude()); |
|
402 | + $stmt->bind(22, $item->getLabel()); |
|
403 | + $stmt->bind(23, $item->getBirthday()); |
|
404 | + $stmt->bind(24, $item->getStatus(), \Aimeos\MW\DB\Statement\Base::PARAM_INT); |
|
405 | + $stmt->bind(25, $item->getDateVerified()); |
|
406 | + $stmt->bind(26, $item->getPassword()); |
|
407 | + $stmt->bind(27, $date); // Modification time |
|
408 | + $stmt->bind(28, $context->getEditor()); |
|
409 | + |
|
410 | + if ($id !== null) { |
|
411 | + $stmt->bind(29, $id, \Aimeos\MW\DB\Statement\Base::PARAM_INT); |
|
412 | + $item->setId($id); |
|
413 | 413 | } else { |
414 | - $stmt->bind( 29, $date ); // Creation time |
|
414 | + $stmt->bind(29, $date); // Creation time |
|
415 | 415 | } |
416 | 416 | |
417 | 417 | $stmt->execute()->finish(); |
418 | 418 | |
419 | - if( $id === null && $fetch === true ) |
|
419 | + if ($id === null && $fetch === true) |
|
420 | 420 | { |
421 | 421 | /** mshop/customer/manager/laravel/newid |
422 | 422 | * Retrieves the ID generated by the database when inserting a new record |
@@ -449,14 +449,14 @@ discard block |
||
449 | 449 | * @see mshop/customer/manager/laravel/count |
450 | 450 | */ |
451 | 451 | $path = 'mshop/customer/manager/laravel/newid'; |
452 | - $item->setId( $this->newId( $conn, $path ) ); |
|
452 | + $item->setId($this->newId($conn, $path)); |
|
453 | 453 | } |
454 | 454 | |
455 | - $dbm->release( $conn, $dbname ); |
|
455 | + $dbm->release($conn, $dbname); |
|
456 | 456 | } |
457 | - catch( \Exception $e ) |
|
457 | + catch (\Exception $e) |
|
458 | 458 | { |
459 | - $dbm->release( $conn, $dbname ); |
|
459 | + $dbm->release($conn, $dbname); |
|
460 | 460 | throw $e; |
461 | 461 | } |
462 | 462 | } |
@@ -470,11 +470,11 @@ discard block |
||
470 | 470 | * @return array List of items implementing \Aimeos\MShop\Customer\Item\Iface |
471 | 471 | * @throws \Aimeos\MShop\Customer\Exception If creating items failed |
472 | 472 | */ |
473 | - public function searchItems( \Aimeos\MW\Criteria\Iface $search, array $ref = array(), &$total = null ) |
|
473 | + public function searchItems(\Aimeos\MW\Criteria\Iface $search, array $ref = array(), &$total = null) |
|
474 | 474 | { |
475 | 475 | $dbm = $this->getContext()->getDatabaseManager(); |
476 | 476 | $dbname = $this->getResourceName(); |
477 | - $conn = $dbm->acquire( $dbname ); |
|
477 | + $conn = $dbm->acquire($dbname); |
|
478 | 478 | $map = array(); |
479 | 479 | |
480 | 480 | try |
@@ -482,27 +482,27 @@ discard block |
||
482 | 482 | $level = \Aimeos\MShop\Locale\Manager\Base::SITE_ALL; |
483 | 483 | $cfgPathSearch = 'mshop/customer/manager/laravel/search'; |
484 | 484 | $cfgPathCount = 'mshop/customer/manager/laravel/count'; |
485 | - $required = array( 'customer' ); |
|
485 | + $required = array('customer'); |
|
486 | 486 | |
487 | - $results = $this->searchItemsBase( $conn, $search, $cfgPathSearch, $cfgPathCount, $required, $total, $level ); |
|
488 | - while( ( $row = $results->fetch() ) !== false ) { |
|
489 | - $map[ $row['customer.id'] ] = $row; |
|
487 | + $results = $this->searchItemsBase($conn, $search, $cfgPathSearch, $cfgPathCount, $required, $total, $level); |
|
488 | + while (($row = $results->fetch()) !== false) { |
|
489 | + $map[$row['customer.id']] = $row; |
|
490 | 490 | } |
491 | 491 | |
492 | - $dbm->release( $conn, $dbname ); |
|
492 | + $dbm->release($conn, $dbname); |
|
493 | 493 | } |
494 | - catch( \Exception $e ) |
|
494 | + catch (\Exception $e) |
|
495 | 495 | { |
496 | - $dbm->release( $conn, $dbname ); |
|
496 | + $dbm->release($conn, $dbname); |
|
497 | 497 | throw $e; |
498 | 498 | } |
499 | 499 | |
500 | 500 | $addrItems = []; |
501 | - if( in_array( 'address', $ref, true ) ) { |
|
502 | - $addrItems = $this->getAddressItems( array_keys( $map ) ); |
|
501 | + if (in_array('address', $ref, true)) { |
|
502 | + $addrItems = $this->getAddressItems(array_keys($map)); |
|
503 | 503 | } |
504 | 504 | |
505 | - return $this->buildItems( $map, $ref, 'customer', $addrItems ); |
|
505 | + return $this->buildItems($map, $ref, 'customer', $addrItems); |
|
506 | 506 | } |
507 | 507 | |
508 | 508 | |
@@ -513,8 +513,8 @@ discard block |
||
513 | 513 | * @param string|null $name Name of the implementation, will be from configuration (or Default) if null |
514 | 514 | * @return mixed Manager for different extensions, e.g stock, tags, locations, etc. |
515 | 515 | */ |
516 | - public function getSubManager( $manager, $name = null ) |
|
516 | + public function getSubManager($manager, $name = null) |
|
517 | 517 | { |
518 | - return $this->getSubManagerBase( 'customer', $manager, ( $name === null ? 'Laravel' : $name ) ); |
|
518 | + return $this->getSubManagerBase('customer', $manager, ($name === null ? 'Laravel' : $name)); |
|
519 | 519 | } |
520 | 520 | } |