Passed
Push — master ( e292e3...7ac069 )
by Aimeos
02:43
created
lib/custom/tests/MShop/Customer/Manager/Lists/LaravelTest.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
 	public function testGetItem()
64 64
 	{
65 65
 		$search = $this->object->createSearch();
66
-		$search->setSlice(0, 1);
66
+		$search->setSlice( 0, 1 );
67 67
 		$results = $this->object->searchItems( $search );
68 68
 
69 69
 		if( ( $item = reset( $results ) ) === false ) {
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
 	public function testSaveUpdateDeleteItem()
78 78
 	{
79 79
 		$search = $this->object->createSearch();
80
-		$search->setSlice(0, 1);
80
+		$search->setSlice( 0, 1 );
81 81
 		$items = $this->object->searchItems( $search );
82 82
 
83 83
 		if( ( $item = reset( $items ) ) === false ) {
@@ -108,12 +108,12 @@  discard block
 block discarded – undo
108 108
 		$this->assertEquals( $item->getDateEnd(), $itemSaved->getDateEnd() );
109 109
 		$this->assertEquals( $item->getPosition(), $itemSaved->getPosition() );
110 110
 		$this->assertEquals( $this->editor, $itemSaved->getEditor() );
111
-		$this->assertStringStartsWith(date('Y-m-d', time()), $itemSaved->getTimeCreated());
112
-		$this->assertStringStartsWith(date('Y-m-d', time()), $itemSaved->getTimeModified());
111
+		$this->assertStringStartsWith( date( 'Y-m-d', time() ), $itemSaved->getTimeCreated() );
112
+		$this->assertStringStartsWith( date( 'Y-m-d', time() ), $itemSaved->getTimeModified() );
113 113
 
114 114
 		$this->assertEquals( $this->editor, $itemSaved->getEditor() );
115 115
 		$this->assertRegExp( '/\d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2}/', $itemSaved->getTimeCreated() );
116
-		$this->assertRegExp('/\d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2}/', $itemSaved->getTimeModified() );
116
+		$this->assertRegExp( '/\d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2}/', $itemSaved->getTimeModified() );
117 117
 
118 118
 		$this->assertEquals( $itemExp->getId(), $itemUpd->getId() );
119 119
 		$this->assertEquals( $itemExp->getSiteId(), $itemUpd->getSiteId() );
@@ -132,7 +132,7 @@  discard block
 block discarded – undo
132 132
 		$this->assertInstanceOf( \Aimeos\MShop\Common\Item\Iface::class, $resultSaved );
133 133
 		$this->assertInstanceOf( \Aimeos\MShop\Common\Item\Iface::class, $resultUpd );
134 134
 
135
-		$this->setExpectedException('\\Aimeos\\MShop\\Exception');
135
+		$this->setExpectedException( '\\Aimeos\\MShop\\Exception' );
136 136
 		$this->object->getItem( $itemSaved->getId() );
137 137
 	}
138 138
 
@@ -278,8 +278,8 @@  discard block
 block discarded – undo
278 278
 
279 279
 	public function testGetSubManager()
280 280
 	{
281
-		$this->assertInstanceOf( '\\Aimeos\\MShop\\Common\\Manager\\Iface', $this->object->getSubManager('type') );
282
-		$this->assertInstanceOf( '\\Aimeos\\MShop\\Common\\Manager\\Iface', $this->object->getSubManager('type', 'Standard') );
281
+		$this->assertInstanceOf( '\\Aimeos\\MShop\\Common\\Manager\\Iface', $this->object->getSubManager( 'type' ) );
282
+		$this->assertInstanceOf( '\\Aimeos\\MShop\\Common\\Manager\\Iface', $this->object->getSubManager( 'type', 'Standard' ) );
283 283
 
284 284
 		$this->setExpectedException( '\\Aimeos\\MShop\\Exception' );
285 285
 		$this->object->getSubManager( 'unknown' );
Please login to merge, or discard this patch.
lib/custom/setup/unittest/data/customer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@
 block discarded – undo
75 75
 				'customer.address.telefax' => '055544332212', 'customer.address.website' => 'www.example.com',
76 76
 				'customer.address.longitude' => '10.5', 'customer.address.latitude' => '51.0',
77 77
 				'customer.address.position' => '0',
78
-			],[
78
+			], [
79 79
 				'customer.address.company' => 'Example company LLC', 'customer.address.vatid' => 'DE999999999',
80 80
 				'customer.address.salutation' => 'mr', 'customer.address.title' => 'Dr.',
81 81
 				'customer.address.firstname' => 'Good', 'customer.address.lastname' => 'Unittest',
Please login to merge, or discard this patch.
lib/custom/tests/MShop/Customer/Manager/LaravelTest.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -216,13 +216,13 @@  discard block
 block discarded – undo
216 216
 		$expr[] = $search->compare( '==', 'customer.longitude', '10.0' );
217 217
 		$expr[] = $search->compare( '==', 'customer.latitude', '50.0' );
218 218
 
219
-		$param = ['text','default', 0];
219
+		$param = ['text', 'default', 0];
220 220
 		$expr[] = $search->compare( '==', $search->createFunction( 'customer:has', $param ), null );
221 221
 
222
-		$param = ['text','default', $listItem->getRefId()];
222
+		$param = ['text', 'default', $listItem->getRefId()];
223 223
 		$expr[] = $search->compare( '!=', $search->createFunction( 'customer:has', $param ), null );
224 224
 
225
-		$param = ['text','default'];
225
+		$param = ['text', 'default'];
226 226
 		$expr[] = $search->compare( '!=', $search->createFunction( 'customer:has', $param ), null );
227 227
 
228 228
 		$param = ['text'];
@@ -285,7 +285,7 @@  discard block
 block discarded – undo
285 285
 		$this->assertEquals( 2, count( $results ) );
286 286
 		$this->assertEquals( 3, $total );
287 287
 
288
-		foreach($results as $itemId => $item) {
288
+		foreach( $results as $itemId => $item ) {
289 289
 			$this->assertEquals( $itemId, $item->getId() );
290 290
 		}
291 291
 	}
Please login to merge, or discard this patch.