Completed
Pull Request — master (#12)
by
unknown
02:48
created
lib/custom/src/MShop/Customer/Manager/Typo3.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -630,7 +630,7 @@
 block discarded – undo
630 630
 		}
631 631
 		catch( \Exception $e )
632 632
 		{
633
-			$dbm->release( $conn, $dbname  );
633
+			$dbm->release( $conn, $dbname );
634 634
 			throw $e;
635 635
 		}
636 636
 
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -470,8 +470,7 @@
 block discarded – undo
470 470
 				 */
471 471
 				$path = 'mshop/customer/manager/typo3/insert';
472 472
 				$sql = $this->addSqlColumns( array_keys( $columns ), $this->getSqlConfig( $path ) );
473
-			}
474
-			else
473
+			} else
475 474
 			{
476 475
 				/** mshop/customer/manager/typo3/update
477 476
 				 * Updates an existing customer record in the database
Please login to merge, or discard this patch.
lib/custom/src/MShop/Customer/Manager/Group/Typo3.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -237,8 +237,7 @@
 block discarded – undo
237 237
 				 */
238 238
 				$path = 'mshop/customer/manager/group/typo3/insert';
239 239
 				$sql = $this->addSqlColumns( array_keys( $columns ), $this->getSqlConfig( $path ) );
240
-			}
241
-			else
240
+			} else
242 241
 			{
243 242
 				/** mshop/customer/manager/group/typo3/update/mysql
244 243
 				 * Updates an existing customer group record in the database
Please login to merge, or discard this patch.
lib/custom/src/MW/View/Engine/Typo3.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -46,9 +46,9 @@
 block discarded – undo
46 46
 	public function render( \Aimeos\MW\View\Iface $view, $filename, array $values )
47 47
 	{
48 48
 		$fluid = $this->objectManager->get( 'TYPO3\\CMS\\Fluid\\View\\StandaloneView' );
49
-		$typoScript = $this->objectManager->get(ConfigurationManager::class)->getConfiguration(ConfigurationManager::CONFIGURATION_TYPE_FRAMEWORK);
50
-		$fluid->setPartialRootPaths((array) $typoScript['view']['partialRootPaths']);
51
-		$fluid->setLayoutRootPaths((array) $typoScript['view']['layoutRootPaths']);
49
+		$typoScript = $this->objectManager->get( ConfigurationManager::class )->getConfiguration( ConfigurationManager::CONFIGURATION_TYPE_FRAMEWORK );
50
+		$fluid->setPartialRootPaths( (array) $typoScript['view']['partialRootPaths'] );
51
+		$fluid->setLayoutRootPaths( (array) $typoScript['view']['layoutRootPaths'] );
52 52
 		$fluid->setTemplatePathAndFilename( $filename );
53 53
 		$fluid->assign( '_aimeos_view', $view );
54 54
 		$fluid->assignMultiple( $values );
Please login to merge, or discard this patch.