@@ -220,13 +220,13 @@ discard block |
||
220 | 220 | $expr[] = $search->compare( '==', 'customer.longitude', '10.0' ); |
221 | 221 | $expr[] = $search->compare( '==', 'customer.latitude', '50.0' ); |
222 | 222 | |
223 | - $param = ['text','default', 0]; |
|
223 | + $param = ['text', 'default', 0]; |
|
224 | 224 | $expr[] = $search->compare( '==', $search->createFunction( 'customer:has', $param ), null ); |
225 | 225 | |
226 | - $param = ['text','default', $listItem->getRefId()]; |
|
226 | + $param = ['text', 'default', $listItem->getRefId()]; |
|
227 | 227 | $expr[] = $search->compare( '!=', $search->createFunction( 'customer:has', $param ), null ); |
228 | 228 | |
229 | - $param = ['text','default']; |
|
229 | + $param = ['text', 'default']; |
|
230 | 230 | $expr[] = $search->compare( '!=', $search->createFunction( 'customer:has', $param ), null ); |
231 | 231 | |
232 | 232 | $param = ['text']; |
@@ -289,7 +289,7 @@ discard block |
||
289 | 289 | $this->assertEquals( 2, count( $results ) ); |
290 | 290 | $this->assertEquals( 3, $total ); |
291 | 291 | |
292 | - foreach($results as $itemId => $item) { |
|
292 | + foreach( $results as $itemId => $item ) { |
|
293 | 293 | $this->assertEquals( $itemId, $item->getId() ); |
294 | 294 | } |
295 | 295 | } |