Passed
Push — master ( 5ef141...611970 )
by Aimeos
03:16
created
admin/jqadm/templates/group/item-standard.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
 
58 58
 				<?php foreach( array_values( $this->get( 'itemSubparts', [] ) ) as $idx => $subpart ) : ?>
59 59
 					<li class="nav-item <?= $enc->attr( $subpart ); ?>">
60
-						<a class="nav-link" href="#<?= $enc->attr( $subpart ); ?>" data-toggle="tab" role="tab" tabindex="<?= ++$idx+1; ?>">
60
+						<a class="nav-link" href="#<?= $enc->attr( $subpart ); ?>" data-toggle="tab" role="tab" tabindex="<?= ++$idx + 1; ?>">
61 61
 							<?= $enc->html( $this->translate( 'admin', $subpart ) ); ?>
62 62
 						</a>
63 63
 					</li>
Please login to merge, or discard this patch.
admin/jqadm/tests/Admin/JQAdm/Product/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/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.