@@ -19,217 +19,217 @@ |
||
19 | 19 | protected function setUp() |
20 | 20 | { |
21 | 21 | $this->context = \TestHelperFrontend::getContext(); |
22 | - $this->testItem = \Aimeos\MShop\Factory::createManager( $this->context, 'product' )->findItem( 'U:TESTP' ); |
|
22 | + $this->testItem = \Aimeos\MShop\Factory::createManager($this->context, 'product')->findItem('U:TESTP'); |
|
23 | 23 | |
24 | - $object = new \Aimeos\Controller\Frontend\Basket\Standard( $this->context ); |
|
25 | - $this->object = new \Aimeos\Controller\Frontend\Basket\Decorator\Select( $object, $this->context ); |
|
24 | + $object = new \Aimeos\Controller\Frontend\Basket\Standard($this->context); |
|
25 | + $this->object = new \Aimeos\Controller\Frontend\Basket\Decorator\Select($object, $this->context); |
|
26 | 26 | } |
27 | 27 | |
28 | 28 | |
29 | 29 | protected function tearDown() |
30 | 30 | { |
31 | 31 | $this->object->clear(); |
32 | - $this->context->getSession()->set( 'aimeos', [] ); |
|
32 | + $this->context->getSession()->set('aimeos', []); |
|
33 | 33 | |
34 | - unset( $this->object ); |
|
34 | + unset($this->object); |
|
35 | 35 | } |
36 | 36 | |
37 | 37 | |
38 | 38 | public function testAddDeleteProduct() |
39 | 39 | { |
40 | 40 | $basket = $this->object->get(); |
41 | - $this->object->addProduct( $this->testItem->getId(), 2 ); |
|
41 | + $this->object->addProduct($this->testItem->getId(), 2); |
|
42 | 42 | |
43 | - $this->assertEquals( 1, count( $basket->getProducts() ) ); |
|
44 | - $this->assertEquals( 2, $basket->getProduct( 0 )->getQuantity() ); |
|
45 | - $this->assertEquals( 'U:TESTPSUB01', $basket->getProduct( 0 )->getProductCode() ); |
|
43 | + $this->assertEquals(1, count($basket->getProducts())); |
|
44 | + $this->assertEquals(2, $basket->getProduct(0)->getQuantity()); |
|
45 | + $this->assertEquals('U:TESTPSUB01', $basket->getProduct(0)->getProductCode()); |
|
46 | 46 | } |
47 | 47 | |
48 | 48 | |
49 | 49 | public function testAddProductNoSelection() |
50 | 50 | { |
51 | - $item = \Aimeos\MShop\Factory::createManager( $this->context, 'product' )->findItem( 'CNC' ); |
|
51 | + $item = \Aimeos\MShop\Factory::createManager($this->context, 'product')->findItem('CNC'); |
|
52 | 52 | |
53 | - $this->object->addProduct( $item->getId(), 1 ); |
|
53 | + $this->object->addProduct($item->getId(), 1); |
|
54 | 54 | |
55 | - $this->assertEquals( 1, count( $this->object->get()->getProducts() ) ); |
|
56 | - $this->assertEquals( 'CNC', $this->object->get()->getProduct( 0 )->getProductCode() ); |
|
57 | - $this->assertEquals( 0, count( $this->object->get()->getProduct( 0 )->getProducts() ) ); |
|
55 | + $this->assertEquals(1, count($this->object->get()->getProducts())); |
|
56 | + $this->assertEquals('CNC', $this->object->get()->getProduct(0)->getProductCode()); |
|
57 | + $this->assertEquals(0, count($this->object->get()->getProduct(0)->getProducts())); |
|
58 | 58 | } |
59 | 59 | |
60 | 60 | |
61 | 61 | public function testAddProductVariant() |
62 | 62 | { |
63 | - $attributeManager = \Aimeos\MShop\Attribute\Manager\Factory::createManager( \TestHelperFrontend::getContext() ); |
|
63 | + $attributeManager = \Aimeos\MShop\Attribute\Manager\Factory::createManager(\TestHelperFrontend::getContext()); |
|
64 | 64 | |
65 | 65 | $search = $attributeManager->createSearch(); |
66 | - $search->setConditions( $search->compare( '==', 'attribute.code', array( 'xs', 'white' ) ) ); |
|
66 | + $search->setConditions($search->compare('==', 'attribute.code', array('xs', 'white'))); |
|
67 | 67 | |
68 | - $attributes = $attributeManager->searchItems( $search ); |
|
68 | + $attributes = $attributeManager->searchItems($search); |
|
69 | 69 | |
70 | - if( count( $attributes ) === 0 ) { |
|
71 | - throw new \RuntimeException( 'Attributes not found' ); |
|
70 | + if (count($attributes) === 0) { |
|
71 | + throw new \RuntimeException('Attributes not found'); |
|
72 | 72 | } |
73 | 73 | |
74 | 74 | |
75 | - $item = \Aimeos\MShop\Factory::createManager( $this->context, 'product' )->findItem( 'CNC' ); |
|
75 | + $item = \Aimeos\MShop\Factory::createManager($this->context, 'product')->findItem('CNC'); |
|
76 | 76 | |
77 | - $this->object->addProduct( $item->getId(), 1, [], array_keys( $attributes ), [], [], [], 'default' ); |
|
77 | + $this->object->addProduct($item->getId(), 1, [], array_keys($attributes), [], [], [], 'default'); |
|
78 | 78 | |
79 | - $this->assertEquals( 1, count( $this->object->get()->getProducts() ) ); |
|
80 | - $this->assertEquals( 'CNC', $this->object->get()->getProduct( 0 )->getProductCode() ); |
|
79 | + $this->assertEquals(1, count($this->object->get()->getProducts())); |
|
80 | + $this->assertEquals('CNC', $this->object->get()->getProduct(0)->getProductCode()); |
|
81 | 81 | } |
82 | 82 | |
83 | 83 | |
84 | 84 | public function testAddProductVariantIncomplete() |
85 | 85 | { |
86 | - $attributeManager = \Aimeos\MShop\Factory::createManager( $this->context, 'attribute' ); |
|
86 | + $attributeManager = \Aimeos\MShop\Factory::createManager($this->context, 'attribute'); |
|
87 | 87 | |
88 | 88 | $search = $attributeManager->createSearch(); |
89 | 89 | $expr = array( |
90 | - $search->compare( '==', 'attribute.domain', 'product' ), |
|
91 | - $search->compare( '==', 'attribute.code', '30' ), |
|
92 | - $search->compare( '==', 'attribute.type.code', 'length' ), |
|
90 | + $search->compare('==', 'attribute.domain', 'product'), |
|
91 | + $search->compare('==', 'attribute.code', '30'), |
|
92 | + $search->compare('==', 'attribute.type.code', 'length'), |
|
93 | 93 | ); |
94 | - $search->setConditions( $search->combine( '&&', $expr ) ); |
|
94 | + $search->setConditions($search->combine('&&', $expr)); |
|
95 | 95 | |
96 | - $attributes = $attributeManager->searchItems( $search ); |
|
96 | + $attributes = $attributeManager->searchItems($search); |
|
97 | 97 | |
98 | - if( count( $attributes ) === 0 ) { |
|
99 | - throw new \RuntimeException( 'Attributes not found' ); |
|
98 | + if (count($attributes) === 0) { |
|
99 | + throw new \RuntimeException('Attributes not found'); |
|
100 | 100 | } |
101 | 101 | |
102 | 102 | |
103 | - $item = \Aimeos\MShop\Factory::createManager( $this->context, 'product' )->findItem( 'U:TEST' ); |
|
103 | + $item = \Aimeos\MShop\Factory::createManager($this->context, 'product')->findItem('U:TEST'); |
|
104 | 104 | |
105 | - $this->object->addProduct( $item->getId(), 1, [], array_keys( $attributes ) ); |
|
105 | + $this->object->addProduct($item->getId(), 1, [], array_keys($attributes)); |
|
106 | 106 | |
107 | - $this->assertEquals( 1, count( $this->object->get()->getProducts() ) ); |
|
108 | - $this->assertEquals( 'U:TESTSUB02', $this->object->get()->getProduct( 0 )->getProductCode() ); |
|
109 | - $this->assertEquals( 2, count( $this->object->get()->getProduct( 0 )->getAttributes() ) ); |
|
107 | + $this->assertEquals(1, count($this->object->get()->getProducts())); |
|
108 | + $this->assertEquals('U:TESTSUB02', $this->object->get()->getProduct(0)->getProductCode()); |
|
109 | + $this->assertEquals(2, count($this->object->get()->getProduct(0)->getAttributes())); |
|
110 | 110 | } |
111 | 111 | |
112 | 112 | |
113 | 113 | public function testAddProductVariantNonUnique() |
114 | 114 | { |
115 | - $attributeManager = \Aimeos\MShop\Factory::createManager( $this->context, 'attribute' ); |
|
115 | + $attributeManager = \Aimeos\MShop\Factory::createManager($this->context, 'attribute'); |
|
116 | 116 | |
117 | 117 | $search = $attributeManager->createSearch(); |
118 | 118 | $expr = array( |
119 | - $search->compare( '==', 'attribute.domain', 'product' ), |
|
120 | - $search->compare( '==', 'attribute.code', '30' ), |
|
121 | - $search->compare( '==', 'attribute.type.code', 'width' ), |
|
119 | + $search->compare('==', 'attribute.domain', 'product'), |
|
120 | + $search->compare('==', 'attribute.code', '30'), |
|
121 | + $search->compare('==', 'attribute.type.code', 'width'), |
|
122 | 122 | ); |
123 | - $search->setConditions( $search->combine( '&&', $expr ) ); |
|
123 | + $search->setConditions($search->combine('&&', $expr)); |
|
124 | 124 | |
125 | - $attributes = $attributeManager->searchItems( $search ); |
|
125 | + $attributes = $attributeManager->searchItems($search); |
|
126 | 126 | |
127 | - if( count( $attributes ) === 0 ) { |
|
128 | - throw new \RuntimeException( 'Attributes not found' ); |
|
127 | + if (count($attributes) === 0) { |
|
128 | + throw new \RuntimeException('Attributes not found'); |
|
129 | 129 | } |
130 | 130 | |
131 | 131 | |
132 | - $item = \Aimeos\MShop\Factory::createManager( $this->context, 'product' )->findItem( 'U:TEST' ); |
|
132 | + $item = \Aimeos\MShop\Factory::createManager($this->context, 'product')->findItem('U:TEST'); |
|
133 | 133 | |
134 | - $this->setExpectedException( '\\Aimeos\\Controller\\Frontend\\Basket\\Exception' ); |
|
135 | - $this->object->addProduct( $item->getId(), 1, [], array_keys( $attributes ) ); |
|
134 | + $this->setExpectedException('\\Aimeos\\Controller\\Frontend\\Basket\\Exception'); |
|
135 | + $this->object->addProduct($item->getId(), 1, [], array_keys($attributes)); |
|
136 | 136 | } |
137 | 137 | |
138 | 138 | |
139 | 139 | public function testAddProductVariantNotRequired() |
140 | 140 | { |
141 | - $attributeManager = \Aimeos\MShop\Factory::createManager( $this->context, 'attribute' ); |
|
141 | + $attributeManager = \Aimeos\MShop\Factory::createManager($this->context, 'attribute'); |
|
142 | 142 | |
143 | 143 | $search = $attributeManager->createSearch(); |
144 | - $search->setConditions( $search->compare( '==', 'attribute.code', 'xs' ) ); |
|
144 | + $search->setConditions($search->compare('==', 'attribute.code', 'xs')); |
|
145 | 145 | |
146 | - $attributes = $attributeManager->searchItems( $search ); |
|
146 | + $attributes = $attributeManager->searchItems($search); |
|
147 | 147 | |
148 | - if( count( $attributes ) === 0 ) { |
|
149 | - throw new \RuntimeException( 'Attribute not found' ); |
|
148 | + if (count($attributes) === 0) { |
|
149 | + throw new \RuntimeException('Attribute not found'); |
|
150 | 150 | } |
151 | 151 | |
152 | - $options = array( 'variant' => false ); |
|
152 | + $options = array('variant' => false); |
|
153 | 153 | |
154 | - $this->object->addProduct( $this->testItem->getId(), 1, $options, array_keys( $attributes ) ); |
|
154 | + $this->object->addProduct($this->testItem->getId(), 1, $options, array_keys($attributes)); |
|
155 | 155 | |
156 | - $this->assertEquals( 1, count( $this->object->get()->getProducts() ) ); |
|
157 | - $this->assertEquals( 'U:TESTP', $this->object->get()->getProduct( 0 )->getProductCode() ); |
|
156 | + $this->assertEquals(1, count($this->object->get()->getProducts())); |
|
157 | + $this->assertEquals('U:TESTP', $this->object->get()->getProduct(0)->getProductCode()); |
|
158 | 158 | } |
159 | 159 | |
160 | 160 | |
161 | 161 | public function testAddProductEmptySelectionException() |
162 | 162 | { |
163 | - $item = \Aimeos\MShop\Factory::createManager( $this->context, 'product' )->findItem( 'U:noSel' ); |
|
163 | + $item = \Aimeos\MShop\Factory::createManager($this->context, 'product')->findItem('U:noSel'); |
|
164 | 164 | |
165 | - $this->setExpectedException( '\\Aimeos\\Controller\\Frontend\\Basket\\Exception' ); |
|
166 | - $this->object->addProduct( $item->getId(), 1 ); |
|
165 | + $this->setExpectedException('\\Aimeos\\Controller\\Frontend\\Basket\\Exception'); |
|
166 | + $this->object->addProduct($item->getId(), 1); |
|
167 | 167 | } |
168 | 168 | |
169 | 169 | |
170 | 170 | public function testAddProductSelectionWithPricelessItem() |
171 | 171 | { |
172 | - $this->object->addProduct( $this->testItem->getId(), 1 ); |
|
172 | + $this->object->addProduct($this->testItem->getId(), 1); |
|
173 | 173 | |
174 | - $this->assertEquals( 'U:TESTPSUB01', $this->object->get()->getProduct( 0 )->getProductCode() ); |
|
174 | + $this->assertEquals('U:TESTPSUB01', $this->object->get()->getProduct(0)->getProductCode()); |
|
175 | 175 | } |
176 | 176 | |
177 | 177 | |
178 | 178 | public function testAddProductConfigAttribute() |
179 | 179 | { |
180 | - $attributeManager = \Aimeos\MShop\Factory::createManager( $this->context, 'attribute' ); |
|
180 | + $attributeManager = \Aimeos\MShop\Factory::createManager($this->context, 'attribute'); |
|
181 | 181 | |
182 | 182 | $search = $attributeManager->createSearch(); |
183 | - $search->setConditions( $search->compare( '==', 'attribute.code', 'xs' ) ); |
|
183 | + $search->setConditions($search->compare('==', 'attribute.code', 'xs')); |
|
184 | 184 | |
185 | - $attributes = $attributeManager->searchItems( $search ); |
|
185 | + $attributes = $attributeManager->searchItems($search); |
|
186 | 186 | |
187 | - if( empty( $attributes ) ) { |
|
188 | - throw new \RuntimeException( 'Attribute not found' ); |
|
187 | + if (empty($attributes)) { |
|
188 | + throw new \RuntimeException('Attribute not found'); |
|
189 | 189 | } |
190 | 190 | |
191 | - $this->object->addProduct( $this->testItem->getId(), 1, [], [], array_keys( $attributes ) ); |
|
191 | + $this->object->addProduct($this->testItem->getId(), 1, [], [], array_keys($attributes)); |
|
192 | 192 | $basket = $this->object->get(); |
193 | 193 | |
194 | - $this->assertEquals( 1, count( $basket->getProducts() ) ); |
|
195 | - $this->assertEquals( 'U:TESTPSUB01', $basket->getProduct( 0 )->getProductCode() ); |
|
196 | - $this->assertEquals( 'xs', $basket->getProduct( 0 )->getAttribute( 'size', 'config' ) ); |
|
194 | + $this->assertEquals(1, count($basket->getProducts())); |
|
195 | + $this->assertEquals('U:TESTPSUB01', $basket->getProduct(0)->getProductCode()); |
|
196 | + $this->assertEquals('xs', $basket->getProduct(0)->getAttribute('size', 'config')); |
|
197 | 197 | } |
198 | 198 | |
199 | 199 | |
200 | 200 | public function testAddProductHiddenAttribute() |
201 | 201 | { |
202 | - $attributeManager = \Aimeos\MShop\Factory::createManager( $this->context, 'attribute' ); |
|
202 | + $attributeManager = \Aimeos\MShop\Factory::createManager($this->context, 'attribute'); |
|
203 | 203 | |
204 | 204 | $search = $attributeManager->createSearch(); |
205 | 205 | $expr = array( |
206 | - $search->compare( '==', 'attribute.code', '29' ), |
|
207 | - $search->compare( '==', 'attribute.type.code', 'width' ), |
|
206 | + $search->compare('==', 'attribute.code', '29'), |
|
207 | + $search->compare('==', 'attribute.type.code', 'width'), |
|
208 | 208 | ); |
209 | - $search->setConditions( $search->combine( '&&', $expr ) ); |
|
209 | + $search->setConditions($search->combine('&&', $expr)); |
|
210 | 210 | |
211 | - $attributes = $attributeManager->searchItems( $search ); |
|
211 | + $attributes = $attributeManager->searchItems($search); |
|
212 | 212 | |
213 | - if( empty( $attributes ) ) { |
|
214 | - throw new \RuntimeException( 'Attribute not found' ); |
|
213 | + if (empty($attributes)) { |
|
214 | + throw new \RuntimeException('Attribute not found'); |
|
215 | 215 | } |
216 | 216 | |
217 | - $this->object->addProduct( $this->testItem->getId(), 1, [], [], [], array_keys( $attributes ) ); |
|
217 | + $this->object->addProduct($this->testItem->getId(), 1, [], [], [], array_keys($attributes)); |
|
218 | 218 | |
219 | 219 | $basket = $this->object->get(); |
220 | - $this->assertEquals( 1, count( $basket->getProducts() ) ); |
|
220 | + $this->assertEquals(1, count($basket->getProducts())); |
|
221 | 221 | |
222 | - $product = $basket->getProduct( 0 ); |
|
223 | - $this->assertEquals( 'U:TESTPSUB01', $product->getProductCode() ); |
|
222 | + $product = $basket->getProduct(0); |
|
223 | + $this->assertEquals('U:TESTPSUB01', $product->getProductCode()); |
|
224 | 224 | |
225 | 225 | $attributes = $product->getAttributes(); |
226 | - $this->assertEquals( 1, count( $attributes ) ); |
|
226 | + $this->assertEquals(1, count($attributes)); |
|
227 | 227 | |
228 | - if( ( $attribute = reset( $attributes ) ) === false ) { |
|
229 | - throw new \RuntimeException( 'No attribute' ); |
|
228 | + if (($attribute = reset($attributes)) === false) { |
|
229 | + throw new \RuntimeException('No attribute'); |
|
230 | 230 | } |
231 | 231 | |
232 | - $this->assertEquals( 'hidden', $attribute->getType() ); |
|
233 | - $this->assertEquals( '29', $product->getAttribute( 'width', 'hidden' ) ); |
|
232 | + $this->assertEquals('hidden', $attribute->getType()); |
|
233 | + $this->assertEquals('29', $product->getAttribute('width', 'hidden')); |
|
234 | 234 | } |
235 | 235 | } |
@@ -17,63 +17,63 @@ discard block |
||
17 | 17 | |
18 | 18 | protected function setUp() |
19 | 19 | { |
20 | - $this->object = new \Aimeos\Controller\Frontend\Catalog\Standard( \TestHelperFrontend::getContext() ); |
|
20 | + $this->object = new \Aimeos\Controller\Frontend\Catalog\Standard(\TestHelperFrontend::getContext()); |
|
21 | 21 | } |
22 | 22 | |
23 | 23 | |
24 | 24 | protected function tearDown() |
25 | 25 | { |
26 | - unset( $this->object ); |
|
26 | + unset($this->object); |
|
27 | 27 | } |
28 | 28 | |
29 | 29 | |
30 | 30 | public function testCreateManager() |
31 | 31 | { |
32 | - $this->assertInstanceOf( '\\Aimeos\\MShop\\Common\\Manager\\Iface', $this->object->createManager( 'product' ) ); |
|
32 | + $this->assertInstanceOf('\\Aimeos\\MShop\\Common\\Manager\\Iface', $this->object->createManager('product')); |
|
33 | 33 | } |
34 | 34 | |
35 | 35 | |
36 | 36 | public function testCreateCatalogFilter() |
37 | 37 | { |
38 | - $filter = $this->object->createCatalogFilter( true ); |
|
38 | + $filter = $this->object->createCatalogFilter(true); |
|
39 | 39 | |
40 | - $this->assertInstanceOf( '\\Aimeos\\MW\\Criteria\\Iface', $filter ); |
|
41 | - $this->assertInstanceOf( '\\Aimeos\\MW\\Criteria\\Expression\\Compare\\Iface', $filter->getConditions() ); |
|
42 | - $this->assertEquals( 'catalog.status', $filter->getConditions()->getName() ); |
|
40 | + $this->assertInstanceOf('\\Aimeos\\MW\\Criteria\\Iface', $filter); |
|
41 | + $this->assertInstanceOf('\\Aimeos\\MW\\Criteria\\Expression\\Compare\\Iface', $filter->getConditions()); |
|
42 | + $this->assertEquals('catalog.status', $filter->getConditions()->getName()); |
|
43 | 43 | } |
44 | 44 | |
45 | 45 | |
46 | 46 | public function testGetCatalogPath() |
47 | 47 | { |
48 | - $manager = \Aimeos\MShop\Catalog\Manager\Factory::createManager( \TestHelperFrontend::getContext() ); |
|
49 | - $item = $manager->getTree( null, [], \Aimeos\MW\Tree\Manager\Base::LEVEL_LIST ); |
|
48 | + $manager = \Aimeos\MShop\Catalog\Manager\Factory::createManager(\TestHelperFrontend::getContext()); |
|
49 | + $item = $manager->getTree(null, [], \Aimeos\MW\Tree\Manager\Base::LEVEL_LIST); |
|
50 | 50 | |
51 | 51 | $list = []; |
52 | - foreach( $this->object->getCatalogPath( $item->getChild( 0 )->getId(), array( 'text' ) ) as $item ) { |
|
52 | + foreach ($this->object->getCatalogPath($item->getChild(0)->getId(), array('text')) as $item) { |
|
53 | 53 | $list[$item->getCode()] = $item; |
54 | 54 | } |
55 | 55 | |
56 | - $this->assertEquals( 2, count( $list ) ); |
|
57 | - $this->assertArrayHasKey( 'root', $list ); |
|
58 | - $this->assertArrayHasKey( 'categories', $list ); |
|
56 | + $this->assertEquals(2, count($list)); |
|
57 | + $this->assertArrayHasKey('root', $list); |
|
58 | + $this->assertArrayHasKey('categories', $list); |
|
59 | 59 | } |
60 | 60 | |
61 | 61 | |
62 | 62 | public function testGetCatalogTree() |
63 | 63 | { |
64 | - $item = $this->object->getCatalogTree( null, array( 'text' ), \Aimeos\MW\Tree\Manager\Base::LEVEL_ONE ); |
|
64 | + $item = $this->object->getCatalogTree(null, array('text'), \Aimeos\MW\Tree\Manager\Base::LEVEL_ONE); |
|
65 | 65 | |
66 | - $this->assertEquals( 'Root', $item->getName() ); |
|
67 | - $this->assertEquals( 0, count( $item->getChildren() ) ); |
|
66 | + $this->assertEquals('Root', $item->getName()); |
|
67 | + $this->assertEquals(0, count($item->getChildren())); |
|
68 | 68 | } |
69 | 69 | |
70 | 70 | |
71 | 71 | public function testAggregateIndex() |
72 | 72 | { |
73 | 73 | $filter = $this->object->createIndexFilter(); |
74 | - $list = $this->object->aggregateIndex( $filter, 'index.attribute.id' ); |
|
74 | + $list = $this->object->aggregateIndex($filter, 'index.attribute.id'); |
|
75 | 75 | |
76 | - $this->assertGreaterThan( 0, count( $list ) ); |
|
76 | + $this->assertGreaterThan(0, count($list)); |
|
77 | 77 | } |
78 | 78 | |
79 | 79 | |
@@ -81,286 +81,286 @@ discard block |
||
81 | 81 | { |
82 | 82 | $filter = $this->object->createIndexFilter(); |
83 | 83 | |
84 | - $this->assertInstanceOf( '\\Aimeos\\MW\\Criteria\\Iface', $filter ); |
|
85 | - $this->assertEquals( [], $filter->getSortations() ); |
|
86 | - $this->assertEquals( 0, $filter->getSliceStart() ); |
|
87 | - $this->assertEquals( 100, $filter->getSliceSize() ); |
|
84 | + $this->assertInstanceOf('\\Aimeos\\MW\\Criteria\\Iface', $filter); |
|
85 | + $this->assertEquals([], $filter->getSortations()); |
|
86 | + $this->assertEquals(0, $filter->getSliceStart()); |
|
87 | + $this->assertEquals(100, $filter->getSliceSize()); |
|
88 | 88 | } |
89 | 89 | |
90 | 90 | |
91 | 91 | public function testCreateIndexFilterCategory() |
92 | 92 | { |
93 | - $filter = $this->object->createIndexFilterCategory( 0 ); |
|
93 | + $filter = $this->object->createIndexFilterCategory(0); |
|
94 | 94 | |
95 | - $this->assertInstanceOf( '\\Aimeos\\MW\\Criteria\\Iface', $filter ); |
|
95 | + $this->assertInstanceOf('\\Aimeos\\MW\\Criteria\\Iface', $filter); |
|
96 | 96 | |
97 | 97 | $list = $filter->getConditions()->getExpressions(); |
98 | 98 | |
99 | 99 | |
100 | - if( !isset( $list[0] ) || !( $list[0] instanceof \Aimeos\MW\Criteria\Expression\Compare\Iface ) ) { |
|
101 | - throw new \RuntimeException( 'Wrong expression' ); |
|
100 | + if (!isset($list[0]) || !($list[0] instanceof \Aimeos\MW\Criteria\Expression\Compare\Iface)) { |
|
101 | + throw new \RuntimeException('Wrong expression'); |
|
102 | 102 | } |
103 | - $this->assertEquals( 'index.catalog.id', $list[0]->getName() ); |
|
104 | - $this->assertEquals( array( 0 ), $list[0]->getValue() ); |
|
103 | + $this->assertEquals('index.catalog.id', $list[0]->getName()); |
|
104 | + $this->assertEquals(array(0), $list[0]->getValue()); |
|
105 | 105 | |
106 | 106 | |
107 | - $this->assertEquals( [], $filter->getSortations() ); |
|
108 | - $this->assertEquals( 0, $filter->getSliceStart() ); |
|
109 | - $this->assertEquals( 100, $filter->getSliceSize() ); |
|
107 | + $this->assertEquals([], $filter->getSortations()); |
|
108 | + $this->assertEquals(0, $filter->getSliceStart()); |
|
109 | + $this->assertEquals(100, $filter->getSliceSize()); |
|
110 | 110 | } |
111 | 111 | |
112 | 112 | |
113 | 113 | public function testCreateIndexFilterCategoryPosition() |
114 | 114 | { |
115 | - $filter = $this->object->createIndexFilterCategory( 0, 'relevance', '-', 1, 2, 'test' ); |
|
115 | + $filter = $this->object->createIndexFilterCategory(0, 'relevance', '-', 1, 2, 'test'); |
|
116 | 116 | |
117 | - $this->assertInstanceOf( '\\Aimeos\\MW\\Criteria\\Iface', $filter ); |
|
117 | + $this->assertInstanceOf('\\Aimeos\\MW\\Criteria\\Iface', $filter); |
|
118 | 118 | |
119 | 119 | $sort = $filter->getSortations(); |
120 | - if( ( $item = reset( $sort ) ) === false ) { |
|
121 | - throw new \RuntimeException( 'Sortation not set' ); |
|
120 | + if (($item = reset($sort)) === false) { |
|
121 | + throw new \RuntimeException('Sortation not set'); |
|
122 | 122 | } |
123 | 123 | |
124 | - $this->assertEquals( 'sort:index.catalog.position("test",["0"])', $item->getName() ); |
|
125 | - $this->assertEquals( '-', $item->getOperator() ); |
|
124 | + $this->assertEquals('sort:index.catalog.position("test",["0"])', $item->getName()); |
|
125 | + $this->assertEquals('-', $item->getOperator()); |
|
126 | 126 | |
127 | - $this->assertEquals( 1, $filter->getSliceStart() ); |
|
128 | - $this->assertEquals( 2, $filter->getSliceSize() ); |
|
127 | + $this->assertEquals(1, $filter->getSliceStart()); |
|
128 | + $this->assertEquals(2, $filter->getSliceSize()); |
|
129 | 129 | } |
130 | 130 | |
131 | 131 | |
132 | 132 | public function testCreateIndexFilterCategoryCode() |
133 | 133 | { |
134 | - $filter = $this->object->createIndexFilterCategory( 0, 'code' ); |
|
134 | + $filter = $this->object->createIndexFilterCategory(0, 'code'); |
|
135 | 135 | |
136 | - $this->assertInstanceOf( '\\Aimeos\\MW\\Criteria\\Iface', $filter ); |
|
136 | + $this->assertInstanceOf('\\Aimeos\\MW\\Criteria\\Iface', $filter); |
|
137 | 137 | |
138 | 138 | $sort = $filter->getSortations(); |
139 | - if( ( $item = reset( $sort ) ) === false ) { |
|
140 | - throw new \RuntimeException( 'Sortation not set' ); |
|
139 | + if (($item = reset($sort)) === false) { |
|
140 | + throw new \RuntimeException('Sortation not set'); |
|
141 | 141 | } |
142 | 142 | |
143 | - $this->assertStringStartsWith( 'product.code', $item->getName() ); |
|
143 | + $this->assertStringStartsWith('product.code', $item->getName()); |
|
144 | 144 | } |
145 | 145 | |
146 | 146 | |
147 | 147 | public function testCreateIndexFilterCategoryName() |
148 | 148 | { |
149 | - $filter = $this->object->createIndexFilterCategory( 0, 'name' ); |
|
149 | + $filter = $this->object->createIndexFilterCategory(0, 'name'); |
|
150 | 150 | |
151 | - $this->assertInstanceOf( '\\Aimeos\\MW\\Criteria\\Iface', $filter ); |
|
151 | + $this->assertInstanceOf('\\Aimeos\\MW\\Criteria\\Iface', $filter); |
|
152 | 152 | |
153 | 153 | $sort = $filter->getSortations(); |
154 | - if( ( $item = reset( $sort ) ) === false ) { |
|
155 | - throw new \RuntimeException( 'Sortation not set' ); |
|
154 | + if (($item = reset($sort)) === false) { |
|
155 | + throw new \RuntimeException('Sortation not set'); |
|
156 | 156 | } |
157 | 157 | |
158 | - $this->assertEquals( 'sort:index.text.value("default","de","name")', $item->getName() ); |
|
158 | + $this->assertEquals('sort:index.text.value("default","de","name")', $item->getName()); |
|
159 | 159 | } |
160 | 160 | |
161 | 161 | |
162 | 162 | public function testCreateIndexFilterCategoryPrice() |
163 | 163 | { |
164 | - $filter = $this->object->createIndexFilterCategory( 0, 'price' ); |
|
164 | + $filter = $this->object->createIndexFilterCategory(0, 'price'); |
|
165 | 165 | |
166 | - $this->assertInstanceOf( '\\Aimeos\\MW\\Criteria\\Iface', $filter ); |
|
166 | + $this->assertInstanceOf('\\Aimeos\\MW\\Criteria\\Iface', $filter); |
|
167 | 167 | |
168 | 168 | $sort = $filter->getSortations(); |
169 | - if( ( $item = reset( $sort ) ) === false ) { |
|
170 | - throw new \RuntimeException( 'Sortation not set' ); |
|
169 | + if (($item = reset($sort)) === false) { |
|
170 | + throw new \RuntimeException('Sortation not set'); |
|
171 | 171 | } |
172 | 172 | |
173 | - $this->assertStringStartsWith( 'sort:index.price.value("default","EUR","default")', $item->getName() ); |
|
173 | + $this->assertStringStartsWith('sort:index.price.value("default","EUR","default")', $item->getName()); |
|
174 | 174 | } |
175 | 175 | |
176 | 176 | |
177 | 177 | public function testCreateIndexFilterCategoryInvalidSortation() |
178 | 178 | { |
179 | - $filter = $this->object->createIndexFilterCategory( 0, 'failure' ); |
|
179 | + $filter = $this->object->createIndexFilterCategory(0, 'failure'); |
|
180 | 180 | |
181 | - $this->assertInstanceOf( '\\Aimeos\\MW\\Criteria\\Iface', $filter ); |
|
182 | - $this->assertEquals( [], $filter->getSortations() ); |
|
181 | + $this->assertInstanceOf('\\Aimeos\\MW\\Criteria\\Iface', $filter); |
|
182 | + $this->assertEquals([], $filter->getSortations()); |
|
183 | 183 | } |
184 | 184 | |
185 | 185 | |
186 | 186 | public function testAddIndexFilterCategory() |
187 | 187 | { |
188 | 188 | $filter = $this->object->createIndexFilter(); |
189 | - $filter = $this->object->addIndexFilterCategory( $filter, 0 ); |
|
189 | + $filter = $this->object->addIndexFilterCategory($filter, 0); |
|
190 | 190 | |
191 | 191 | $list = $filter->getConditions()->getExpressions(); |
192 | 192 | |
193 | - if( !isset( $list[0] ) || !( $list[0] instanceof \Aimeos\MW\Criteria\Expression\Compare\Iface ) ) { |
|
194 | - throw new \RuntimeException( 'Wrong expression' ); |
|
193 | + if (!isset($list[0]) || !($list[0] instanceof \Aimeos\MW\Criteria\Expression\Compare\Iface)) { |
|
194 | + throw new \RuntimeException('Wrong expression'); |
|
195 | 195 | } |
196 | 196 | |
197 | - $this->assertEquals( 'index.catalog.id', $list[0]->getName() ); |
|
198 | - $this->assertEquals( array( 0 ), $list[0]->getValue() ); |
|
199 | - $this->assertEquals( [], $filter->getSortations() ); |
|
197 | + $this->assertEquals('index.catalog.id', $list[0]->getName()); |
|
198 | + $this->assertEquals(array(0), $list[0]->getValue()); |
|
199 | + $this->assertEquals([], $filter->getSortations()); |
|
200 | 200 | } |
201 | 201 | |
202 | 202 | |
203 | 203 | public function testCreateIndexFilterText() |
204 | 204 | { |
205 | - $filter = $this->object->createIndexFilterText( 'Espresso' ); |
|
205 | + $filter = $this->object->createIndexFilterText('Espresso'); |
|
206 | 206 | |
207 | - $this->assertInstanceOf( '\\Aimeos\\MW\\Criteria\\Iface', $filter ); |
|
207 | + $this->assertInstanceOf('\\Aimeos\\MW\\Criteria\\Iface', $filter); |
|
208 | 208 | |
209 | 209 | $list = $filter->getConditions()->getExpressions(); |
210 | 210 | |
211 | 211 | |
212 | - if( !isset( $list[0] ) || !( $list[0] instanceof \Aimeos\MW\Criteria\Expression\Compare\Iface ) ) { |
|
213 | - throw new \RuntimeException( 'Wrong expression' ); |
|
212 | + if (!isset($list[0]) || !($list[0] instanceof \Aimeos\MW\Criteria\Expression\Compare\Iface)) { |
|
213 | + throw new \RuntimeException('Wrong expression'); |
|
214 | 214 | } |
215 | - $this->assertEquals( 'index.text.relevance("default","de","Espresso")', $list[0]->getName() ); |
|
216 | - $this->assertEquals( 0, $list[0]->getValue() ); |
|
215 | + $this->assertEquals('index.text.relevance("default","de","Espresso")', $list[0]->getName()); |
|
216 | + $this->assertEquals(0, $list[0]->getValue()); |
|
217 | 217 | |
218 | 218 | |
219 | - $this->assertEquals( [], $filter->getSortations() ); |
|
220 | - $this->assertEquals( 0, $filter->getSliceStart() ); |
|
221 | - $this->assertEquals( 100, $filter->getSliceSize() ); |
|
219 | + $this->assertEquals([], $filter->getSortations()); |
|
220 | + $this->assertEquals(0, $filter->getSliceStart()); |
|
221 | + $this->assertEquals(100, $filter->getSliceSize()); |
|
222 | 222 | } |
223 | 223 | |
224 | 224 | |
225 | 225 | public function testCreateIndexFilterTextRelevance() |
226 | 226 | { |
227 | - $filter = $this->object->createIndexFilterText( 'Espresso', 'relevance', '-', 1, 2, 'test' ); |
|
227 | + $filter = $this->object->createIndexFilterText('Espresso', 'relevance', '-', 1, 2, 'test'); |
|
228 | 228 | |
229 | - $this->assertInstanceOf( '\\Aimeos\\MW\\Criteria\\Iface', $filter ); |
|
230 | - $this->assertEquals( [], $filter->getSortations() ); |
|
231 | - $this->assertEquals( 1, $filter->getSliceStart() ); |
|
232 | - $this->assertEquals( 2, $filter->getSliceSize() ); |
|
229 | + $this->assertInstanceOf('\\Aimeos\\MW\\Criteria\\Iface', $filter); |
|
230 | + $this->assertEquals([], $filter->getSortations()); |
|
231 | + $this->assertEquals(1, $filter->getSliceStart()); |
|
232 | + $this->assertEquals(2, $filter->getSliceSize()); |
|
233 | 233 | } |
234 | 234 | |
235 | 235 | |
236 | 236 | public function testCreateIndexFilterTextCode() |
237 | 237 | { |
238 | - $filter = $this->object->createIndexFilterText( 'Espresso', 'code' ); |
|
238 | + $filter = $this->object->createIndexFilterText('Espresso', 'code'); |
|
239 | 239 | |
240 | - $this->assertInstanceOf( '\\Aimeos\\MW\\Criteria\\Iface', $filter ); |
|
240 | + $this->assertInstanceOf('\\Aimeos\\MW\\Criteria\\Iface', $filter); |
|
241 | 241 | |
242 | 242 | $sort = $filter->getSortations(); |
243 | - if( ( $item = reset( $sort ) ) === false ) { |
|
244 | - throw new \RuntimeException( 'Sortation not set' ); |
|
243 | + if (($item = reset($sort)) === false) { |
|
244 | + throw new \RuntimeException('Sortation not set'); |
|
245 | 245 | } |
246 | 246 | |
247 | - $this->assertEquals( 'product.code', $item->getName() ); |
|
247 | + $this->assertEquals('product.code', $item->getName()); |
|
248 | 248 | } |
249 | 249 | |
250 | 250 | |
251 | 251 | public function testCreateIndexFilterTextName() |
252 | 252 | { |
253 | - $filter = $this->object->createIndexFilterText( 'Espresso', 'name' ); |
|
253 | + $filter = $this->object->createIndexFilterText('Espresso', 'name'); |
|
254 | 254 | |
255 | - $this->assertInstanceOf( '\\Aimeos\\MW\\Criteria\\Iface', $filter ); |
|
255 | + $this->assertInstanceOf('\\Aimeos\\MW\\Criteria\\Iface', $filter); |
|
256 | 256 | |
257 | 257 | $sort = $filter->getSortations(); |
258 | - if( ( $item = reset( $sort ) ) === false ) { |
|
259 | - throw new \RuntimeException( 'Sortation not set' ); |
|
258 | + if (($item = reset($sort)) === false) { |
|
259 | + throw new \RuntimeException('Sortation not set'); |
|
260 | 260 | } |
261 | 261 | |
262 | - $this->assertEquals( 'sort:index.text.value("default","de","name")', $item->getName() ); |
|
262 | + $this->assertEquals('sort:index.text.value("default","de","name")', $item->getName()); |
|
263 | 263 | } |
264 | 264 | |
265 | 265 | |
266 | 266 | public function testCreateIndexFilterTextPrice() |
267 | 267 | { |
268 | - $filter = $this->object->createIndexFilterCategory( 'Espresso', 'price' ); |
|
268 | + $filter = $this->object->createIndexFilterCategory('Espresso', 'price'); |
|
269 | 269 | |
270 | - $this->assertInstanceOf( '\\Aimeos\\MW\\Criteria\\Iface', $filter ); |
|
270 | + $this->assertInstanceOf('\\Aimeos\\MW\\Criteria\\Iface', $filter); |
|
271 | 271 | |
272 | 272 | $sort = $filter->getSortations(); |
273 | - if( ( $item = reset( $sort ) ) === false ) { |
|
274 | - throw new \RuntimeException( 'Sortation not set' ); |
|
273 | + if (($item = reset($sort)) === false) { |
|
274 | + throw new \RuntimeException('Sortation not set'); |
|
275 | 275 | } |
276 | 276 | |
277 | - $this->assertStringStartsWith( 'sort:index.price.value("default","EUR","default")', $item->getName() ); |
|
277 | + $this->assertStringStartsWith('sort:index.price.value("default","EUR","default")', $item->getName()); |
|
278 | 278 | } |
279 | 279 | |
280 | 280 | |
281 | 281 | public function testCreateIndexFilterTextInvalidSortation() |
282 | 282 | { |
283 | - $filter = $this->object->createIndexFilterText( '', 'failure' ); |
|
283 | + $filter = $this->object->createIndexFilterText('', 'failure'); |
|
284 | 284 | |
285 | - $this->assertInstanceOf( '\\Aimeos\\MW\\Criteria\\Iface', $filter ); |
|
286 | - $this->assertEquals( [], $filter->getSortations() ); |
|
285 | + $this->assertInstanceOf('\\Aimeos\\MW\\Criteria\\Iface', $filter); |
|
286 | + $this->assertEquals([], $filter->getSortations()); |
|
287 | 287 | } |
288 | 288 | |
289 | 289 | |
290 | 290 | public function testAddIndexFilterText() |
291 | 291 | { |
292 | - $filter = $this->object->createIndexFilterText( 'Espresso' ); |
|
293 | - $filter = $this->object->addIndexFilterText( $filter, 'Espresso' ); |
|
292 | + $filter = $this->object->createIndexFilterText('Espresso'); |
|
293 | + $filter = $this->object->addIndexFilterText($filter, 'Espresso'); |
|
294 | 294 | |
295 | 295 | $list = $filter->getConditions()->getExpressions(); |
296 | 296 | |
297 | - if( !isset( $list[0] ) || !( $list[0] instanceof \Aimeos\MW\Criteria\Expression\Compare\Iface ) ) { |
|
298 | - throw new \RuntimeException( 'Wrong expression' ); |
|
297 | + if (!isset($list[0]) || !($list[0] instanceof \Aimeos\MW\Criteria\Expression\Compare\Iface)) { |
|
298 | + throw new \RuntimeException('Wrong expression'); |
|
299 | 299 | } |
300 | 300 | |
301 | - $this->assertEquals( 'index.text.relevance("default","de","Espresso")', $list[0]->getName() ); |
|
302 | - $this->assertEquals( 0, $list[0]->getValue() ); |
|
303 | - $this->assertEquals( [], $filter->getSortations() ); |
|
301 | + $this->assertEquals('index.text.relevance("default","de","Espresso")', $list[0]->getName()); |
|
302 | + $this->assertEquals(0, $list[0]->getValue()); |
|
303 | + $this->assertEquals([], $filter->getSortations()); |
|
304 | 304 | } |
305 | 305 | |
306 | 306 | |
307 | 307 | public function testGetIndexItemsCategory() |
308 | 308 | { |
309 | - $catalogManager = \Aimeos\MShop\Catalog\Manager\Factory::createManager( \TestHelperFrontend::getContext() ); |
|
309 | + $catalogManager = \Aimeos\MShop\Catalog\Manager\Factory::createManager(\TestHelperFrontend::getContext()); |
|
310 | 310 | $search = $catalogManager->createSearch(); |
311 | 311 | |
312 | - $search->setConditions( $search->compare( '==', 'catalog.code', 'new' ) ); |
|
313 | - $search->setSlice( 0, 1 ); |
|
314 | - $items = $catalogManager->searchItems( $search ); |
|
312 | + $search->setConditions($search->compare('==', 'catalog.code', 'new')); |
|
313 | + $search->setSlice(0, 1); |
|
314 | + $items = $catalogManager->searchItems($search); |
|
315 | 315 | |
316 | - if( ( $item = reset( $items ) ) === false ) { |
|
317 | - throw new \RuntimeException( 'Catalog item not found' ); |
|
316 | + if (($item = reset($items)) === false) { |
|
317 | + throw new \RuntimeException('Catalog item not found'); |
|
318 | 318 | } |
319 | 319 | |
320 | 320 | $total = 0; |
321 | - $filter = $this->object->createIndexFilterCategory( $item->getId(), 'position', '+', 1, 1 ); |
|
322 | - $results = $this->object->getIndexItems( $filter, [], $total ); |
|
321 | + $filter = $this->object->createIndexFilterCategory($item->getId(), 'position', '+', 1, 1); |
|
322 | + $results = $this->object->getIndexItems($filter, [], $total); |
|
323 | 323 | |
324 | - $this->assertEquals( 3, $total ); |
|
325 | - $this->assertEquals( 1, count( $results ) ); |
|
324 | + $this->assertEquals(3, $total); |
|
325 | + $this->assertEquals(1, count($results)); |
|
326 | 326 | } |
327 | 327 | |
328 | 328 | |
329 | 329 | public function testGetIndexItemsText() |
330 | 330 | { |
331 | 331 | $total = 0; |
332 | - $filter = $this->object->createIndexFilterText( 'Expresso', 'relevance', '+', 0, 1, 'unittype13' ); |
|
333 | - $results = $this->object->getIndexItems( $filter, [], $total ); |
|
332 | + $filter = $this->object->createIndexFilterText('Expresso', 'relevance', '+', 0, 1, 'unittype13'); |
|
333 | + $results = $this->object->getIndexItems($filter, [], $total); |
|
334 | 334 | |
335 | - $this->assertEquals( 2, $total ); |
|
336 | - $this->assertEquals( 1, count( $results ) ); |
|
335 | + $this->assertEquals(2, $total); |
|
336 | + $this->assertEquals(1, count($results)); |
|
337 | 337 | } |
338 | 338 | |
339 | 339 | |
340 | 340 | public function testGetProductItems() |
341 | 341 | { |
342 | - $list = $this->object->getProductItems( [-1] ); |
|
343 | - $this->assertEquals( 0, count( $list ) ); |
|
342 | + $list = $this->object->getProductItems([-1]); |
|
343 | + $this->assertEquals(0, count($list)); |
|
344 | 344 | } |
345 | 345 | |
346 | 346 | |
347 | 347 | public function testCreateTextFilter() |
348 | 348 | { |
349 | - $filter = $this->object->createTextFilter( 'Expresso', 'name', '+', 0, 1 ); |
|
349 | + $filter = $this->object->createTextFilter('Expresso', 'name', '+', 0, 1); |
|
350 | 350 | |
351 | - $this->assertInstanceOf( '\\Aimeos\\MW\\Criteria\\Iface', $filter ); |
|
352 | - $this->assertInstanceOf( '\\Aimeos\\MW\\Criteria\\Expression\\Combine\\Iface', $filter->getConditions() ); |
|
353 | - $this->assertEquals( 3, count( $filter->getConditions()->getExpressions() ) ); |
|
351 | + $this->assertInstanceOf('\\Aimeos\\MW\\Criteria\\Iface', $filter); |
|
352 | + $this->assertInstanceOf('\\Aimeos\\MW\\Criteria\\Expression\\Combine\\Iface', $filter->getConditions()); |
|
353 | + $this->assertEquals(3, count($filter->getConditions()->getExpressions())); |
|
354 | 354 | } |
355 | 355 | |
356 | 356 | |
357 | 357 | public function testGetTextListName() |
358 | 358 | { |
359 | - $filter = $this->object->createTextFilter( 'Cafe Noire', 'relevance', '-', 0, 25, 'unittype19', 'name' ); |
|
360 | - $results = $this->object->getTextList( $filter ); |
|
359 | + $filter = $this->object->createTextFilter('Cafe Noire', 'relevance', '-', 0, 25, 'unittype19', 'name'); |
|
360 | + $results = $this->object->getTextList($filter); |
|
361 | 361 | |
362 | - $this->assertEquals( 1, count( $results ) ); |
|
363 | - $this->assertContains( 'Cafe Noire Cappuccino', $results ); |
|
362 | + $this->assertEquals(1, count($results)); |
|
363 | + $this->assertContains('Cafe Noire Cappuccino', $results); |
|
364 | 364 | } |
365 | 365 | |
366 | 366 | } |
@@ -20,33 +20,33 @@ |
||
20 | 20 | $this->context = \TestHelperFrontend::getContext(); |
21 | 21 | $config = $this->context->getConfig(); |
22 | 22 | |
23 | - $config->set( 'controller/frontend/common/decorators/default', [] ); |
|
24 | - $config->set( 'controller/frontend/catalog/decorators/global', [] ); |
|
25 | - $config->set( 'controller/frontend/catalog/decorators/local', [] ); |
|
23 | + $config->set('controller/frontend/common/decorators/default', []); |
|
24 | + $config->set('controller/frontend/catalog/decorators/global', []); |
|
25 | + $config->set('controller/frontend/catalog/decorators/local', []); |
|
26 | 26 | |
27 | 27 | } |
28 | 28 | |
29 | 29 | |
30 | 30 | public function testInjectController() |
31 | 31 | { |
32 | - $controller = \Aimeos\Controller\Frontend\Catalog\Factory::createController( $this->context, 'Standard' ); |
|
33 | - \Aimeos\Controller\Frontend\Catalog\Factory::injectController( '\\Aimeos\\Controller\\Frontend\\Catalog\\Standard', $controller ); |
|
32 | + $controller = \Aimeos\Controller\Frontend\Catalog\Factory::createController($this->context, 'Standard'); |
|
33 | + \Aimeos\Controller\Frontend\Catalog\Factory::injectController('\\Aimeos\\Controller\\Frontend\\Catalog\\Standard', $controller); |
|
34 | 34 | |
35 | - $injectedController = \Aimeos\Controller\Frontend\Catalog\Factory::createController( $this->context, 'Standard' ); |
|
35 | + $injectedController = \Aimeos\Controller\Frontend\Catalog\Factory::createController($this->context, 'Standard'); |
|
36 | 36 | |
37 | - $this->assertSame( $controller, $injectedController ); |
|
37 | + $this->assertSame($controller, $injectedController); |
|
38 | 38 | } |
39 | 39 | |
40 | 40 | |
41 | 41 | public function testInjectControllerReset() |
42 | 42 | { |
43 | - $controller = \Aimeos\Controller\Frontend\Catalog\Factory::createController( $this->context, 'Standard' ); |
|
44 | - \Aimeos\Controller\Frontend\Catalog\Factory::injectController( '\\Aimeos\\Controller\\Frontend\\Catalog\\Standard', $controller ); |
|
45 | - \Aimeos\Controller\Frontend\Catalog\Factory::injectController( '\\Aimeos\\Controller\\Frontend\\Catalog\\Standard', null ); |
|
43 | + $controller = \Aimeos\Controller\Frontend\Catalog\Factory::createController($this->context, 'Standard'); |
|
44 | + \Aimeos\Controller\Frontend\Catalog\Factory::injectController('\\Aimeos\\Controller\\Frontend\\Catalog\\Standard', $controller); |
|
45 | + \Aimeos\Controller\Frontend\Catalog\Factory::injectController('\\Aimeos\\Controller\\Frontend\\Catalog\\Standard', null); |
|
46 | 46 | |
47 | - $new = \Aimeos\Controller\Frontend\Catalog\Factory::createController( $this->context, 'Standard' ); |
|
47 | + $new = \Aimeos\Controller\Frontend\Catalog\Factory::createController($this->context, 'Standard'); |
|
48 | 48 | |
49 | - $this->assertNotSame( $controller, $new ); |
|
49 | + $this->assertNotSame($controller, $new); |
|
50 | 50 | } |
51 | 51 | |
52 | 52 | } |
53 | 53 | \ No newline at end of file |
@@ -16,13 +16,13 @@ discard block |
||
16 | 16 | |
17 | 17 | protected function setUp() |
18 | 18 | { |
19 | - $this->object = new \Aimeos\Controller\Frontend\Stock\Standard( \TestHelperFrontend::getContext() ); |
|
19 | + $this->object = new \Aimeos\Controller\Frontend\Stock\Standard(\TestHelperFrontend::getContext()); |
|
20 | 20 | } |
21 | 21 | |
22 | 22 | |
23 | 23 | protected function tearDown() |
24 | 24 | { |
25 | - unset( $this->object ); |
|
25 | + unset($this->object); |
|
26 | 26 | } |
27 | 27 | |
28 | 28 | |
@@ -30,66 +30,66 @@ discard block |
||
30 | 30 | { |
31 | 31 | $filter = $this->object->createFilter(); |
32 | 32 | |
33 | - $this->assertInstanceOf( '\\Aimeos\\MW\\Criteria\\Iface', $filter ); |
|
34 | - $this->assertEquals( [], $filter->getSortations() ); |
|
35 | - $this->assertEquals( 0, $filter->getSliceStart() ); |
|
36 | - $this->assertEquals( 100, $filter->getSliceSize() ); |
|
33 | + $this->assertInstanceOf('\\Aimeos\\MW\\Criteria\\Iface', $filter); |
|
34 | + $this->assertEquals([], $filter->getSortations()); |
|
35 | + $this->assertEquals(0, $filter->getSliceStart()); |
|
36 | + $this->assertEquals(100, $filter->getSliceSize()); |
|
37 | 37 | } |
38 | 38 | |
39 | 39 | |
40 | 40 | public function testAddFilterCodes() |
41 | 41 | { |
42 | 42 | $filter = $this->object->createFilter(); |
43 | - $filter = $this->object->addFilterCodes( $filter, ['CNC', 'CNE'] ); |
|
43 | + $filter = $this->object->addFilterCodes($filter, ['CNC', 'CNE']); |
|
44 | 44 | |
45 | 45 | $list = $filter->getConditions()->getExpressions(); |
46 | 46 | |
47 | - if( !isset( $list[0] ) || !( $list[0] instanceof \Aimeos\MW\Criteria\Expression\Compare\Iface ) ) { |
|
48 | - throw new \RuntimeException( 'Wrong expression' ); |
|
47 | + if (!isset($list[0]) || !($list[0] instanceof \Aimeos\MW\Criteria\Expression\Compare\Iface)) { |
|
48 | + throw new \RuntimeException('Wrong expression'); |
|
49 | 49 | } |
50 | 50 | |
51 | - $this->assertEquals( 'stock.productcode', $list[0]->getName() ); |
|
52 | - $this->assertEquals( 2, count( $list[0]->getValue() ) ); |
|
51 | + $this->assertEquals('stock.productcode', $list[0]->getName()); |
|
52 | + $this->assertEquals(2, count($list[0]->getValue())); |
|
53 | 53 | } |
54 | 54 | |
55 | 55 | |
56 | 56 | public function testAddFilterTypes() |
57 | 57 | { |
58 | 58 | $filter = $this->object->createFilter(); |
59 | - $filter = $this->object->addFilterTypes( $filter, ['default'] ); |
|
59 | + $filter = $this->object->addFilterTypes($filter, ['default']); |
|
60 | 60 | |
61 | 61 | $list = $filter->getConditions()->getExpressions(); |
62 | 62 | |
63 | - if( !isset( $list[0] ) || !( $list[0] instanceof \Aimeos\MW\Criteria\Expression\Compare\Iface ) ) { |
|
64 | - throw new \RuntimeException( 'Wrong expression' ); |
|
63 | + if (!isset($list[0]) || !($list[0] instanceof \Aimeos\MW\Criteria\Expression\Compare\Iface)) { |
|
64 | + throw new \RuntimeException('Wrong expression'); |
|
65 | 65 | } |
66 | 66 | |
67 | - $this->assertEquals( 'stock.type.code', $list[0]->getName() ); |
|
68 | - $this->assertEquals( 1, count( $list[0]->getValue() ) ); |
|
67 | + $this->assertEquals('stock.type.code', $list[0]->getName()); |
|
68 | + $this->assertEquals(1, count($list[0]->getValue())); |
|
69 | 69 | } |
70 | 70 | |
71 | 71 | |
72 | 72 | public function testGetItem() |
73 | 73 | { |
74 | 74 | $context = \TestHelperFrontend::getContext(); |
75 | - $manager = \Aimeos\MShop\Factory::createManager( $context, 'stock' ); |
|
76 | - $id = $manager->findItem( 'CNC', [], 'product', 'default' )->getId(); |
|
75 | + $manager = \Aimeos\MShop\Factory::createManager($context, 'stock'); |
|
76 | + $id = $manager->findItem('CNC', [], 'product', 'default')->getId(); |
|
77 | 77 | |
78 | - $result = $this->object->getItem( $id ); |
|
78 | + $result = $this->object->getItem($id); |
|
79 | 79 | |
80 | - $this->assertInstanceOf( '\Aimeos\MShop\Stock\Item\Iface', $result ); |
|
80 | + $this->assertInstanceOf('\Aimeos\MShop\Stock\Item\Iface', $result); |
|
81 | 81 | } |
82 | 82 | |
83 | 83 | |
84 | 84 | public function testSearchItems() |
85 | 85 | { |
86 | 86 | $filter = $this->object->createFilter(); |
87 | - $filter = $this->object->addFilterCodes( $filter, ['CNC', 'CNE'] ); |
|
87 | + $filter = $this->object->addFilterCodes($filter, ['CNC', 'CNE']); |
|
88 | 88 | |
89 | 89 | $total = 0; |
90 | - $results = $this->object->searchItems( $filter, $total ); |
|
90 | + $results = $this->object->searchItems($filter, $total); |
|
91 | 91 | |
92 | - $this->assertEquals( 2, $total ); |
|
93 | - $this->assertEquals( 2, count( $results ) ); |
|
92 | + $this->assertEquals(2, $total); |
|
93 | + $this->assertEquals(2, count($results)); |
|
94 | 94 | } |
95 | 95 | } |
@@ -50,7 +50,7 @@ discard block |
||
50 | 50 | * @param string $type Basket type |
51 | 51 | * @return \Aimeos\Controller\Frontend\Basket\Iface Basket frontend object |
52 | 52 | */ |
53 | - public function setType( $type ); |
|
53 | + public function setType($type); |
|
54 | 54 | |
55 | 55 | |
56 | 56 | /** |
@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | * @param boolean $default True to add default criteria (user logged in), false if not |
70 | 70 | * @return \Aimeos\MShop\Order\Item\Base\Iface Order base object including the given parts |
71 | 71 | */ |
72 | - public function load( $id, $parts = \Aimeos\MShop\Order\Manager\Base\Base::PARTS_ALL, $default = true ); |
|
72 | + public function load($id, $parts = \Aimeos\MShop\Order\Manager\Base\Base::PARTS_ALL, $default = true); |
|
73 | 73 | |
74 | 74 | |
75 | 75 | /** |
@@ -89,9 +89,9 @@ discard block |
||
89 | 89 | * @throws \Aimeos\Controller\Frontend\Basket\Exception If the product isn't available |
90 | 90 | * @return void |
91 | 91 | */ |
92 | - public function addProduct( $prodid, $quantity = 1, array $options = [], array $variantAttributeIds = [], |
|
92 | + public function addProduct($prodid, $quantity = 1, array $options = [], array $variantAttributeIds = [], |
|
93 | 93 | array $configAttributeIds = [], array $hiddenAttributeIds = [], array $customAttributeValues = [], |
94 | - $stocktype = 'default' ); |
|
94 | + $stocktype = 'default'); |
|
95 | 95 | |
96 | 96 | |
97 | 97 | /** |
@@ -100,7 +100,7 @@ discard block |
||
100 | 100 | * @param integer $position Position number (key) of the order product item |
101 | 101 | * @return void |
102 | 102 | */ |
103 | - public function deleteProduct( $position ); |
|
103 | + public function deleteProduct($position); |
|
104 | 104 | |
105 | 105 | |
106 | 106 | /** |
@@ -111,7 +111,7 @@ discard block |
||
111 | 111 | * @param array $configAttributeCodes Codes of the product config attributes that should be REMOVED |
112 | 112 | * @return void |
113 | 113 | */ |
114 | - public function editProduct( $position, $quantity, array $configAttributeCodes = [] ); |
|
114 | + public function editProduct($position, $quantity, array $configAttributeCodes = []); |
|
115 | 115 | |
116 | 116 | |
117 | 117 | /** |
@@ -121,7 +121,7 @@ discard block |
||
121 | 121 | * @throws \Aimeos\Controller\Frontend\Basket\Exception if the coupon code is invalid or not allowed |
122 | 122 | * @return void |
123 | 123 | */ |
124 | - public function addCoupon( $code ); |
|
124 | + public function addCoupon($code); |
|
125 | 125 | |
126 | 126 | |
127 | 127 | /** |
@@ -131,7 +131,7 @@ discard block |
||
131 | 131 | * @throws \Aimeos\Controller\Frontend\Basket\Exception if the coupon code is invalid |
132 | 132 | * @return void |
133 | 133 | */ |
134 | - public function deleteCoupon( $code ); |
|
134 | + public function deleteCoupon($code); |
|
135 | 135 | |
136 | 136 | |
137 | 137 | /** |
@@ -143,7 +143,7 @@ discard block |
||
143 | 143 | * if one of the keys is invalid when using an array with key/value pairs |
144 | 144 | * @return void |
145 | 145 | */ |
146 | - public function setAddress( $type, $value ); |
|
146 | + public function setAddress($type, $value); |
|
147 | 147 | |
148 | 148 | |
149 | 149 | /** |
@@ -156,5 +156,5 @@ discard block |
||
156 | 156 | * @throws \Aimeos\Controller\Frontend\Basket\Exception If there is no price to the service item attached |
157 | 157 | * @return void |
158 | 158 | */ |
159 | - public function setService( $type, $id, array $attributes = [] ); |
|
159 | + public function setService($type, $id, array $attributes = []); |
|
160 | 160 | } |
@@ -41,27 +41,27 @@ |
||
41 | 41 | * @param string $stocktype Unique code of the stock type to deliver the products from |
42 | 42 | * @throws \Aimeos\Controller\Frontend\Basket\Exception If the product isn't available |
43 | 43 | */ |
44 | - public function addProduct( $prodid, $quantity = 1, array $options = [], array $variantAttributeIds = [], |
|
44 | + public function addProduct($prodid, $quantity = 1, array $options = [], array $variantAttributeIds = [], |
|
45 | 45 | array $configAttributeIds = [], array $hiddenAttributeIds = [], array $customAttributeValues = [], |
46 | - $stocktype = 'default' ) |
|
46 | + $stocktype = 'default') |
|
47 | 47 | { |
48 | - $catalogListManager = \Aimeos\MShop\Factory::createManager( $this->getContext(), 'catalog/lists' ); |
|
48 | + $catalogListManager = \Aimeos\MShop\Factory::createManager($this->getContext(), 'catalog/lists'); |
|
49 | 49 | |
50 | - $search = $catalogListManager->createSearch( true ); |
|
50 | + $search = $catalogListManager->createSearch(true); |
|
51 | 51 | $expr = array( |
52 | - $search->compare( '==', 'catalog.lists.domain', 'product' ), |
|
53 | - $search->compare( '==', 'catalog.lists.refid', $prodid ), |
|
52 | + $search->compare('==', 'catalog.lists.domain', 'product'), |
|
53 | + $search->compare('==', 'catalog.lists.refid', $prodid), |
|
54 | 54 | $search->getConditions() |
55 | 55 | ); |
56 | - $search->setConditions( $search->combine( '&&', $expr ) ); |
|
57 | - $search->setSlice( 0, 1 ); |
|
56 | + $search->setConditions($search->combine('&&', $expr)); |
|
57 | + $search->setSlice(0, 1); |
|
58 | 58 | |
59 | - $result = $catalogListManager->searchItems( $search ); |
|
59 | + $result = $catalogListManager->searchItems($search); |
|
60 | 60 | |
61 | - if( reset( $result ) === false ) |
|
61 | + if (reset($result) === false) |
|
62 | 62 | { |
63 | - $msg = sprintf( 'Adding product with ID "%1$s" is not allowed', $prodid ); |
|
64 | - throw new \Aimeos\Controller\Frontend\Basket\Exception( $msg ); |
|
63 | + $msg = sprintf('Adding product with ID "%1$s" is not allowed', $prodid); |
|
64 | + throw new \Aimeos\Controller\Frontend\Basket\Exception($msg); |
|
65 | 65 | } |
66 | 66 | |
67 | 67 | $this->getController()->addProduct( |
@@ -30,18 +30,18 @@ discard block |
||
30 | 30 | * @param \Aimeos\Controller\Frontend\Iface $controller Controller object |
31 | 31 | * @param \Aimeos\MShop\Context\Item\Iface $context Context object with required objects |
32 | 32 | */ |
33 | - public function __construct( \Aimeos\Controller\Frontend\Iface $controller, \Aimeos\MShop\Context\Item\Iface $context ) |
|
33 | + public function __construct(\Aimeos\Controller\Frontend\Iface $controller, \Aimeos\MShop\Context\Item\Iface $context) |
|
34 | 34 | { |
35 | 35 | $iface = '\Aimeos\Controller\Frontend\Basket\Iface'; |
36 | - if( !( $controller instanceof $iface ) ) |
|
36 | + if (!($controller instanceof $iface)) |
|
37 | 37 | { |
38 | - $msg = sprintf( 'Class "%1$s" does not implement interface "%2$s"', get_class( $controller ), $iface ); |
|
39 | - throw new \Aimeos\Controller\Frontend\Exception( $msg ); |
|
38 | + $msg = sprintf('Class "%1$s" does not implement interface "%2$s"', get_class($controller), $iface); |
|
39 | + throw new \Aimeos\Controller\Frontend\Exception($msg); |
|
40 | 40 | } |
41 | 41 | |
42 | 42 | $this->controller = $controller; |
43 | 43 | |
44 | - parent::__construct( $context ); |
|
44 | + parent::__construct($context); |
|
45 | 45 | } |
46 | 46 | |
47 | 47 | |
@@ -53,9 +53,9 @@ discard block |
||
53 | 53 | * @return mixed Returns the value of the called method |
54 | 54 | * @throws \Aimeos\Controller\Frontend\Exception If method call failed |
55 | 55 | */ |
56 | - public function __call( $name, array $param ) |
|
56 | + public function __call($name, array $param) |
|
57 | 57 | { |
58 | - return @call_user_func_array( array( $this->controller, $name ), $param ); |
|
58 | + return @call_user_func_array(array($this->controller, $name), $param); |
|
59 | 59 | } |
60 | 60 | |
61 | 61 | |
@@ -97,9 +97,9 @@ discard block |
||
97 | 97 | * @param string $type Basket type |
98 | 98 | * @return \Aimeos\Controller\Frontend\Basket\Iface Basket frontend object |
99 | 99 | */ |
100 | - public function setType( $type ) |
|
100 | + public function setType($type) |
|
101 | 101 | { |
102 | - $this->controller->setType( $type ); |
|
102 | + $this->controller->setType($type); |
|
103 | 103 | return $this; |
104 | 104 | } |
105 | 105 | |
@@ -123,9 +123,9 @@ discard block |
||
123 | 123 | * @param boolean $default True to add default criteria (user logged in), false if not |
124 | 124 | * @return \Aimeos\MShop\Order\Item\Base\Iface Order base object including the given parts |
125 | 125 | */ |
126 | - public function load( $id, $parts = \Aimeos\MShop\Order\Manager\Base\Base::PARTS_ALL, $default = true ) |
|
126 | + public function load($id, $parts = \Aimeos\MShop\Order\Manager\Base\Base::PARTS_ALL, $default = true) |
|
127 | 127 | { |
128 | - return $this->controller->load( $id, $parts, $default ); |
|
128 | + return $this->controller->load($id, $parts, $default); |
|
129 | 129 | } |
130 | 130 | |
131 | 131 | |
@@ -150,9 +150,9 @@ discard block |
||
150 | 150 | * @throws \Aimeos\Controller\Frontend\Basket\Exception If the product isn't available |
151 | 151 | * @return void |
152 | 152 | */ |
153 | - public function addProduct( $prodid, $quantity = 1, array $options = [], array $variantAttributeIds = [], |
|
153 | + public function addProduct($prodid, $quantity = 1, array $options = [], array $variantAttributeIds = [], |
|
154 | 154 | array $configAttributeIds = [], array $hiddenAttributeIds = [], array $customAttributeValues = [], |
155 | - $stocktype = 'default' ) |
|
155 | + $stocktype = 'default') |
|
156 | 156 | { |
157 | 157 | $this->controller->addProduct( |
158 | 158 | $prodid, $quantity, $options, $variantAttributeIds, $configAttributeIds, |
@@ -167,9 +167,9 @@ discard block |
||
167 | 167 | * @param integer $position Position number (key) of the order product item |
168 | 168 | * @return void |
169 | 169 | */ |
170 | - public function deleteProduct( $position ) |
|
170 | + public function deleteProduct($position) |
|
171 | 171 | { |
172 | - $this->controller->deleteProduct( $position ); |
|
172 | + $this->controller->deleteProduct($position); |
|
173 | 173 | } |
174 | 174 | |
175 | 175 | |
@@ -182,9 +182,9 @@ discard block |
||
182 | 182 | * @param array $configAttributeCodes Codes of the product config attributes that should be REMOVED |
183 | 183 | * @return void |
184 | 184 | */ |
185 | - public function editProduct( $position, $quantity, array $options = [], array $configAttributeCodes = [] ) |
|
185 | + public function editProduct($position, $quantity, array $options = [], array $configAttributeCodes = []) |
|
186 | 186 | { |
187 | - $this->controller->editProduct( $position, $quantity, $options, $configAttributeCodes ); |
|
187 | + $this->controller->editProduct($position, $quantity, $options, $configAttributeCodes); |
|
188 | 188 | } |
189 | 189 | |
190 | 190 | |
@@ -195,9 +195,9 @@ discard block |
||
195 | 195 | * @throws \Aimeos\Controller\Frontend\Basket\Exception if the coupon code is invalid or not allowed |
196 | 196 | * @return void |
197 | 197 | */ |
198 | - public function addCoupon( $code ) |
|
198 | + public function addCoupon($code) |
|
199 | 199 | { |
200 | - $this->controller->addCoupon( $code ); |
|
200 | + $this->controller->addCoupon($code); |
|
201 | 201 | } |
202 | 202 | |
203 | 203 | |
@@ -208,9 +208,9 @@ discard block |
||
208 | 208 | * @throws \Aimeos\Controller\Frontend\Basket\Exception if the coupon code is invalid |
209 | 209 | * @return void |
210 | 210 | */ |
211 | - public function deleteCoupon( $code ) |
|
211 | + public function deleteCoupon($code) |
|
212 | 212 | { |
213 | - $this->controller->deleteCoupon( $code ); |
|
213 | + $this->controller->deleteCoupon($code); |
|
214 | 214 | } |
215 | 215 | |
216 | 216 | |
@@ -223,9 +223,9 @@ discard block |
||
223 | 223 | * if one of the keys is invalid when using an array with key/value pairs |
224 | 224 | * @return void |
225 | 225 | */ |
226 | - public function setAddress( $type, $value ) |
|
226 | + public function setAddress($type, $value) |
|
227 | 227 | { |
228 | - $this->controller->setAddress( $type, $value ); |
|
228 | + $this->controller->setAddress($type, $value); |
|
229 | 229 | } |
230 | 230 | |
231 | 231 | |
@@ -239,9 +239,9 @@ discard block |
||
239 | 239 | * @throws \Aimeos\Controller\Frontend\Basket\Exception If there is no price to the service item attached |
240 | 240 | * @return void |
241 | 241 | */ |
242 | - public function setService( $type, $id, array $attributes = [] ) |
|
242 | + public function setService($type, $id, array $attributes = []) |
|
243 | 243 | { |
244 | - $this->controller->setService( $type, $id, $attributes ); |
|
244 | + $this->controller->setService($type, $id, $attributes); |
|
245 | 245 | } |
246 | 246 | |
247 | 247 |
@@ -29,9 +29,9 @@ discard block |
||
29 | 29 | * @return \Aimeos\MShop\Common\Manager\Iface Manager object |
30 | 30 | * @since 2015.08 |
31 | 31 | */ |
32 | - public function createManager( $name ) |
|
32 | + public function createManager($name) |
|
33 | 33 | { |
34 | - return \Aimeos\MShop\Factory::createManager( $this->getContext(), $name ); |
|
34 | + return \Aimeos\MShop\Factory::createManager($this->getContext(), $name); |
|
35 | 35 | } |
36 | 36 | |
37 | 37 | |
@@ -43,7 +43,7 @@ discard block |
||
43 | 43 | */ |
44 | 44 | public function createFilter() |
45 | 45 | { |
46 | - return \Aimeos\MShop\Factory::createManager( $this->getContext(), 'catalog' )->createSearch( true ); |
|
46 | + return \Aimeos\MShop\Factory::createManager($this->getContext(), 'catalog')->createSearch(true); |
|
47 | 47 | } |
48 | 48 | |
49 | 49 | |
@@ -55,9 +55,9 @@ discard block |
||
55 | 55 | * @return array Associative list of items implementing \Aimeos\MShop\Catalog\Item\Iface with their IDs as keys |
56 | 56 | * @since 2017.03 |
57 | 57 | */ |
58 | - public function getPath( $id, array $domains = array( 'text', 'media' ) ) |
|
58 | + public function getPath($id, array $domains = array('text', 'media')) |
|
59 | 59 | { |
60 | - return \Aimeos\MShop\Factory::createManager( $this->getContext(), 'catalog' )->getPath( $id, $domains ); |
|
60 | + return \Aimeos\MShop\Factory::createManager($this->getContext(), 'catalog')->getPath($id, $domains); |
|
61 | 61 | } |
62 | 62 | |
63 | 63 | |
@@ -72,10 +72,10 @@ discard block |
||
72 | 72 | * @return \Aimeos\MShop\Catalog\Item\Iface Catalog node, maybe with children depending on the level constant |
73 | 73 | * @since 2017.03 |
74 | 74 | */ |
75 | - public function getTree( $id = null, array $domains = array( 'text', 'media' ), |
|
76 | - $level = \Aimeos\MW\Tree\Manager\Base::LEVEL_TREE, \Aimeos\MW\Criteria\Iface $search = null ) |
|
75 | + public function getTree($id = null, array $domains = array('text', 'media'), |
|
76 | + $level = \Aimeos\MW\Tree\Manager\Base::LEVEL_TREE, \Aimeos\MW\Criteria\Iface $search = null) |
|
77 | 77 | { |
78 | - return \Aimeos\MShop\Factory::createManager( $this->getContext(), 'catalog' )->getTree( $id, $domains, $level, $search ); |
|
78 | + return \Aimeos\MShop\Factory::createManager($this->getContext(), 'catalog')->getTree($id, $domains, $level, $search); |
|
79 | 79 | } |
80 | 80 | |
81 | 81 | |
@@ -87,7 +87,7 @@ discard block |
||
87 | 87 | * @since 2015.08 |
88 | 88 | * @deprecated Use createFilter() instead |
89 | 89 | */ |
90 | - public function createCatalogFilter( $default = true ) |
|
90 | + public function createCatalogFilter($default = true) |
|
91 | 91 | { |
92 | 92 | return $this->createFilter(); |
93 | 93 | } |
@@ -102,9 +102,9 @@ discard block |
||
102 | 102 | * @since 2015.08 |
103 | 103 | * @deprecated Use getPath() instead |
104 | 104 | */ |
105 | - public function getCatalogPath( $id, array $domains = array( 'text', 'media' ) ) |
|
105 | + public function getCatalogPath($id, array $domains = array('text', 'media')) |
|
106 | 106 | { |
107 | - return $this->getPath( $id, $domains ); |
|
107 | + return $this->getPath($id, $domains); |
|
108 | 108 | } |
109 | 109 | |
110 | 110 | |
@@ -120,10 +120,10 @@ discard block |
||
120 | 120 | * @since 2015.08 |
121 | 121 | * @deprecated Use getTree() instead |
122 | 122 | */ |
123 | - public function getCatalogTree( $id = null, array $domains = array( 'text', 'media' ), |
|
124 | - $level = \Aimeos\MW\Tree\Manager\Base::LEVEL_TREE, \Aimeos\MW\Criteria\Iface $search = null ) |
|
123 | + public function getCatalogTree($id = null, array $domains = array('text', 'media'), |
|
124 | + $level = \Aimeos\MW\Tree\Manager\Base::LEVEL_TREE, \Aimeos\MW\Criteria\Iface $search = null) |
|
125 | 125 | { |
126 | - return $this->getTree( $id, $domains, $level, $search ); |
|
126 | + return $this->getTree($id, $domains, $level, $search); |
|
127 | 127 | } |
128 | 128 | |
129 | 129 | |
@@ -137,10 +137,10 @@ discard block |
||
137 | 137 | * @since 2015.08 |
138 | 138 | * @deprecated Use getItems() method in index controller instead |
139 | 139 | */ |
140 | - public function getProductItems( array $ids, array $domains = array( 'media', 'price', 'text' ) ) |
|
140 | + public function getProductItems(array $ids, array $domains = array('media', 'price', 'text')) |
|
141 | 141 | { |
142 | - $cntl = \Aimeos\Controller\Frontend\Factory::createController( $this->getContext(), 'product' ); |
|
143 | - return $cntl->getItems( $ids, $domains ); |
|
142 | + $cntl = \Aimeos\Controller\Frontend\Factory::createController($this->getContext(), 'product'); |
|
143 | + return $cntl->getItems($ids, $domains); |
|
144 | 144 | } |
145 | 145 | |
146 | 146 | |
@@ -153,10 +153,10 @@ discard block |
||
153 | 153 | * @since 2015.08 |
154 | 154 | * @deprecated Use method in index controller instead |
155 | 155 | */ |
156 | - public function aggregateIndex( \Aimeos\MW\Criteria\Iface $filter, $key ) |
|
156 | + public function aggregateIndex(\Aimeos\MW\Criteria\Iface $filter, $key) |
|
157 | 157 | { |
158 | - $cntl = \Aimeos\Controller\Frontend\Factory::createController( $this->getContext(), 'product' ); |
|
159 | - return $cntl->aggregate( $filter, $key ); |
|
158 | + $cntl = \Aimeos\Controller\Frontend\Factory::createController($this->getContext(), 'product'); |
|
159 | + return $cntl->aggregate($filter, $key); |
|
160 | 160 | } |
161 | 161 | |
162 | 162 | |
@@ -172,10 +172,10 @@ discard block |
||
172 | 172 | * @since 2015.08 |
173 | 173 | * @deprecated Use method in index controller instead |
174 | 174 | */ |
175 | - public function createIndexFilter( $sort = null, $direction = '+', $start = 0, $size = 100, $listtype = 'default' ) |
|
175 | + public function createIndexFilter($sort = null, $direction = '+', $start = 0, $size = 100, $listtype = 'default') |
|
176 | 176 | { |
177 | - $cntl = \Aimeos\Controller\Frontend\Factory::createController( $this->getContext(), 'product' ); |
|
178 | - return $cntl->createFilter( $sort, $direction, $start, $size, $listtype ); |
|
177 | + $cntl = \Aimeos\Controller\Frontend\Factory::createController($this->getContext(), 'product'); |
|
178 | + return $cntl->createFilter($sort, $direction, $start, $size, $listtype); |
|
179 | 179 | } |
180 | 180 | |
181 | 181 | |
@@ -192,12 +192,12 @@ discard block |
||
192 | 192 | * @since 2015.08 |
193 | 193 | * @deprecated Use createIndexFilter() and addIndexFilterCategory() instead |
194 | 194 | */ |
195 | - public function createIndexFilterCategory( $catid, $sort = null, $direction = '+', $start = 0, $size = 100, $listtype = 'default' ) |
|
195 | + public function createIndexFilterCategory($catid, $sort = null, $direction = '+', $start = 0, $size = 100, $listtype = 'default') |
|
196 | 196 | { |
197 | - $cntl = \Aimeos\Controller\Frontend\Factory::createController( $this->getContext(), 'product' ); |
|
197 | + $cntl = \Aimeos\Controller\Frontend\Factory::createController($this->getContext(), 'product'); |
|
198 | 198 | |
199 | - $filter = $cntl->createFilter( $sort, $direction, $start, $size, $listtype ); |
|
200 | - $filter = $cntl->addFilterCategory( $filter, $catid, \Aimeos\MW\Tree\Manager\Base::LEVEL_ONE, $sort, $direction, $listtype ); |
|
199 | + $filter = $cntl->createFilter($sort, $direction, $start, $size, $listtype); |
|
200 | + $filter = $cntl->addFilterCategory($filter, $catid, \Aimeos\MW\Tree\Manager\Base::LEVEL_ONE, $sort, $direction, $listtype); |
|
201 | 201 | |
202 | 202 | return $filter; |
203 | 203 | } |
@@ -216,12 +216,12 @@ discard block |
||
216 | 216 | * @since 2015.08 |
217 | 217 | * @deprecated Use createIndexFilter() and addIndexFilterText() instead |
218 | 218 | */ |
219 | - public function createIndexFilterText( $input, $sort = null, $direction = '+', $start = 0, $size = 100, $listtype = 'default' ) |
|
219 | + public function createIndexFilterText($input, $sort = null, $direction = '+', $start = 0, $size = 100, $listtype = 'default') |
|
220 | 220 | { |
221 | - $cntl = \Aimeos\Controller\Frontend\Factory::createController( $this->getContext(), 'product' ); |
|
221 | + $cntl = \Aimeos\Controller\Frontend\Factory::createController($this->getContext(), 'product'); |
|
222 | 222 | |
223 | - $filter = $cntl->createFilter( $sort, $direction, $start, $size, $listtype ); |
|
224 | - $filter = $cntl->addFilterText( $filter, $input, $sort, $direction, $listtype ); |
|
223 | + $filter = $cntl->createFilter($sort, $direction, $start, $size, $listtype); |
|
224 | + $filter = $cntl->addFilterText($filter, $input, $sort, $direction, $listtype); |
|
225 | 225 | |
226 | 226 | return $filter; |
227 | 227 | } |
@@ -236,10 +236,10 @@ discard block |
||
236 | 236 | * @since 2015.08 |
237 | 237 | * @deprecated Use method in index controller instead |
238 | 238 | */ |
239 | - public function addIndexFilterCategory( \Aimeos\MW\Criteria\Iface $search, $catid ) |
|
239 | + public function addIndexFilterCategory(\Aimeos\MW\Criteria\Iface $search, $catid) |
|
240 | 240 | { |
241 | - $cntl = \Aimeos\Controller\Frontend\Factory::createController( $this->getContext(), 'product' ); |
|
242 | - return $cntl->addFilterCategory( $search, $catid ); |
|
241 | + $cntl = \Aimeos\Controller\Frontend\Factory::createController($this->getContext(), 'product'); |
|
242 | + return $cntl->addFilterCategory($search, $catid); |
|
243 | 243 | } |
244 | 244 | |
245 | 245 | |
@@ -253,10 +253,10 @@ discard block |
||
253 | 253 | * @since 2015.08 |
254 | 254 | * @deprecated Use method in index controller instead |
255 | 255 | */ |
256 | - public function addIndexFilterText( \Aimeos\MW\Criteria\Iface $search, $input, $listtype = 'default' ) |
|
256 | + public function addIndexFilterText(\Aimeos\MW\Criteria\Iface $search, $input, $listtype = 'default') |
|
257 | 257 | { |
258 | - $cntl = \Aimeos\Controller\Frontend\Factory::createController( $this->getContext(), 'product' ); |
|
259 | - return $cntl->addFilterText( $search, $input, $listtype ); |
|
258 | + $cntl = \Aimeos\Controller\Frontend\Factory::createController($this->getContext(), 'product'); |
|
259 | + return $cntl->addFilterText($search, $input, $listtype); |
|
260 | 260 | } |
261 | 261 | |
262 | 262 | |
@@ -270,10 +270,10 @@ discard block |
||
270 | 270 | * @since 2015.08 |
271 | 271 | * @deprecated Use method in index controller instead |
272 | 272 | */ |
273 | - public function getIndexItems( \Aimeos\MW\Criteria\Iface $filter, array $domains = array( 'media', 'price', 'text' ), &$total = null ) |
|
273 | + public function getIndexItems(\Aimeos\MW\Criteria\Iface $filter, array $domains = array('media', 'price', 'text'), &$total = null) |
|
274 | 274 | { |
275 | - $cntl = \Aimeos\Controller\Frontend\Factory::createController( $this->getContext(), 'product' ); |
|
276 | - return $cntl->searchItems( $filter, $domains, $total ); |
|
275 | + $cntl = \Aimeos\Controller\Frontend\Factory::createController($this->getContext(), 'product'); |
|
276 | + return $cntl->searchItems($filter, $domains, $total); |
|
277 | 277 | } |
278 | 278 | |
279 | 279 | |
@@ -290,37 +290,37 @@ discard block |
||
290 | 290 | * @return \Aimeos\MW\Criteria\Iface Criteria object containing the conditions for searching |
291 | 291 | * @deprecated Use createFilter() method in index controller instead |
292 | 292 | */ |
293 | - public function createTextFilter( $input, $sort = null, $direction = '+', $start = 0, $size = 25, $listtype = 'default', $type = 'name' ) |
|
293 | + public function createTextFilter($input, $sort = null, $direction = '+', $start = 0, $size = 25, $listtype = 'default', $type = 'name') |
|
294 | 294 | { |
295 | 295 | $locale = $this->getContext()->getLocale(); |
296 | 296 | $langid = $locale->getLanguageId(); |
297 | 297 | |
298 | - $search = \Aimeos\MShop\Factory::createManager( $this->getContext(), 'index/text' )->createSearch( true ); |
|
298 | + $search = \Aimeos\MShop\Factory::createManager($this->getContext(), 'index/text')->createSearch(true); |
|
299 | 299 | |
300 | 300 | $expr = array( |
301 | - $search->compare( '>', $search->createFunction( 'index.text.relevance', array( $listtype, $langid, $input ) ), 0 ), |
|
302 | - $search->compare( '>', $search->createFunction( 'index.text.value', array( $listtype, $langid, $type, 'product' ) ), '' ), |
|
301 | + $search->compare('>', $search->createFunction('index.text.relevance', array($listtype, $langid, $input)), 0), |
|
302 | + $search->compare('>', $search->createFunction('index.text.value', array($listtype, $langid, $type, 'product')), ''), |
|
303 | 303 | ); |
304 | 304 | |
305 | 305 | $sortations = []; |
306 | 306 | |
307 | - switch( $sort ) |
|
307 | + switch ($sort) |
|
308 | 308 | { |
309 | 309 | case 'name': |
310 | - $cmpfunc = $search->createFunction( 'index.text.value', array( $listtype, $langid, 'name', 'product' ) ); |
|
311 | - $expr[] = $search->compare( '>=', $cmpfunc, '' ); |
|
310 | + $cmpfunc = $search->createFunction('index.text.value', array($listtype, $langid, 'name', 'product')); |
|
311 | + $expr[] = $search->compare('>=', $cmpfunc, ''); |
|
312 | 312 | |
313 | - $sortfunc = $search->createFunction( 'sort:index.text.value', array( $listtype, $langid, 'name' ) ); |
|
314 | - $sortations[] = $search->sort( $direction, $sortfunc ); |
|
313 | + $sortfunc = $search->createFunction('sort:index.text.value', array($listtype, $langid, 'name')); |
|
314 | + $sortations[] = $search->sort($direction, $sortfunc); |
|
315 | 315 | break; |
316 | 316 | |
317 | 317 | case 'relevance': |
318 | 318 | // we don't need to sort by 'sort:index.text.relevance' because it's a boolean match (relevance is either 0 or 1) |
319 | 319 | } |
320 | 320 | |
321 | - $search->setConditions( $search->combine( '&&', $expr ) ); |
|
322 | - $search->setSortations( $sortations ); |
|
323 | - $search->setSlice( $start, $size ); |
|
321 | + $search->setConditions($search->combine('&&', $expr)); |
|
322 | + $search->setSortations($sortations); |
|
323 | + $search->setSlice($start, $size); |
|
324 | 324 | |
325 | 325 | return $search; |
326 | 326 | } |
@@ -333,8 +333,8 @@ discard block |
||
333 | 333 | * @return array Associative list of the product ID as key and the product text as value |
334 | 334 | * @deprecated Use searchItems() method in index controller to retrieve product items instead |
335 | 335 | */ |
336 | - public function getTextList( \Aimeos\MW\Criteria\Iface $filter ) |
|
336 | + public function getTextList(\Aimeos\MW\Criteria\Iface $filter) |
|
337 | 337 | { |
338 | - return \Aimeos\MShop\Factory::createManager( $this->getContext(), 'index/text' )->searchTexts( $filter ); |
|
338 | + return \Aimeos\MShop\Factory::createManager($this->getContext(), 'index/text')->searchTexts($filter); |
|
339 | 339 | } |
340 | 340 | } |
@@ -32,9 +32,9 @@ |
||
32 | 32 | * @param \Exception $previous The previous exception used for the exception chaining. |
33 | 33 | * @param array $list The associative list of errors and their messages when several errors occured |
34 | 34 | */ |
35 | - public function __construct( $msg = '', $code = 0, \Exception $previous = null, array $list = [] ) |
|
35 | + public function __construct($msg = '', $code = 0, \Exception $previous = null, array $list = []) |
|
36 | 36 | { |
37 | - parent::__construct( $msg, $code, $previous ); |
|
37 | + parent::__construct($msg, $code, $previous); |
|
38 | 38 | |
39 | 39 | $this->list = $list; |
40 | 40 | } |