Passed
Push — master ( c7b452...3a1f1e )
by Aimeos
03:28
created
admin/jqadm/tests/Admin/JQAdm/Catalog/Image/StandardTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -105,7 +105,7 @@
 block discarded – undo
105 105
 		$file = $this->getMockBuilder( \Psr\Http\Message\UploadedFileInterface::class )->getMock();
106 106
 		$request = $this->getMockBuilder( \Psr\Http\Message\ServerRequestInterface::class )->getMock();
107 107
 		$request->expects( $this->any() )->method( 'getUploadedFiles' )
108
-			->will( $this->returnValue( ['media' => [0 => ['file' => $file] ] ] ) );
108
+			->will( $this->returnValue( ['media' => [0 => ['file' => $file]]] ) );
109 109
 
110 110
 		$helper = new \Aimeos\MW\View\Helper\Request\Standard( $this->view, $request, '127.0.0.1', 'test' );
111 111
 		$this->view ->addHelper( 'request', $helper );
Please login to merge, or discard this patch.
admin/jqadm/tests/Admin/JQAdm/Supplier/Image/StandardTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -105,7 +105,7 @@
 block discarded – undo
105 105
 		$file = $this->getMockBuilder( \Psr\Http\Message\UploadedFileInterface::class )->getMock();
106 106
 		$request = $this->getMockBuilder( \Psr\Http\Message\ServerRequestInterface::class )->getMock();
107 107
 		$request->expects( $this->any() )->method( 'getUploadedFiles' )
108
-			->will( $this->returnValue( ['media' => [0 => ['file' => $file] ] ] ) );
108
+			->will( $this->returnValue( ['media' => [0 => ['file' => $file]]] ) );
109 109
 
110 110
 		$helper = new \Aimeos\MW\View\Helper\Request\Standard( $this->view, $request, '127.0.0.1', 'test' );
111 111
 		$this->view ->addHelper( 'request', $helper );
Please login to merge, or discard this patch.
admin/jqadm/tests/Admin/JQAdm/Attribute/Image/StandardTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -105,7 +105,7 @@
 block discarded – undo
105 105
 		$file = $this->getMockBuilder( \Psr\Http\Message\UploadedFileInterface::class )->getMock();
106 106
 		$request = $this->getMockBuilder( \Psr\Http\Message\ServerRequestInterface::class )->getMock();
107 107
 		$request->expects( $this->any() )->method( 'getUploadedFiles' )
108
-			->will( $this->returnValue( ['media' => [0 => ['file' => $file] ] ] ) );
108
+			->will( $this->returnValue( ['media' => [0 => ['file' => $file]]] ) );
109 109
 
110 110
 		$helper = new \Aimeos\MW\View\Helper\Request\Standard( $this->view, $request, '127.0.0.1', 'test' );
111 111
 		$this->view ->addHelper( 'request', $helper );
Please login to merge, or discard this patch.
admin/jqadm/src/Admin/JQAdm/Product/Physical/Standard.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -291,8 +291,7 @@
 block discarded – undo
291 291
 				$propItem->setValue( $value );
292 292
 
293 293
 				$item->addPropertyItem( $propItem );
294
-			}
295
-			else
294
+			} else
296 295
 			{
297 296
 				$item->deletePropertyItems( $propItems );
298 297
 			}
Please login to merge, or discard this patch.
admin/jqadm/src/Admin/JQAdm.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@
 block discarded – undo
62 62
 			throw new \Aimeos\Admin\JQAdm\Exception( sprintf( 'Invalid factory "%1$s"', $factory ) );
63 63
 		}
64 64
 
65
-		return $client->setAimeos( $aimeos )->setView( $view );;
65
+		return $client->setAimeos( $aimeos )->setView( $view ); ;
66 66
 	}
67 67
 
68 68
 }
Please login to merge, or discard this patch.