Passed
Branch master (560f53)
by Aimeos
13:02
created
lib/custom/setup/unittest/data/cms.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -12,11 +12,11 @@  discard block
 block discarded – undo
12 12
 				'cms.lists.type' => 'default', 'cms.lists.position' => 0,
13 13
 				'text.languageid' => 'en', 'text.type' => 'name', 'text.domain' => 'cms',
14 14
 				'text.label' => 'Contact page', 'text.content' => 'Contact page'
15
-			],[
15
+			], [
16 16
 				'cms.lists.type' => 'default', 'cms.lists.position' => 1,
17 17
 				'text.languageid' => 'en', 'text.type' => 'meta-keywords', 'text.domain' => 'cms',
18 18
 				'text.label' => 'contact', 'text.content' => 'contact, about us'
19
-			],[
19
+			], [
20 20
 				'cms.lists.type' => 'default', 'cms.lists.position' => 1,
21 21
 				'text.languageid' => 'en', 'text.type' => 'content', 'text.domain' => 'cms',
22 22
 				'text.label' => 'Hello', 'text.content' => '<h1>Hello!</h1>'
@@ -29,11 +29,11 @@  discard block
 block discarded – undo
29 29
 				'cms.lists.type' => 'default', 'cms.lists.position' => 0,
30 30
 				'text.languageid' => 'de', 'text.type' => 'name', 'text.domain' => 'cms',
31 31
 				'text.label' => 'Kontaktseite', 'text.content' => 'Kontaktseite'
32
-			],[
32
+			], [
33 33
 				'cms.lists.type' => 'default', 'cms.lists.position' => 1,
34 34
 				'text.languageid' => 'de', 'text.type' => 'meta-keywords', 'text.domain' => 'cms',
35 35
 				'text.label' => 'kontakt', 'text.content' => 'kontakt, über uns'
36
-			],[
36
+			], [
37 37
 				'cms.lists.type' => 'default', 'cms.lists.position' => 1,
38 38
 				'text.languageid' => 'de', 'text.type' => 'content', 'text.domain' => 'cms',
39 39
 				'text.label' => 'Hallo', 'text.content' => '<h1>Hallo!</h1>'
Please login to merge, or discard this patch.
admin/jqadm/src/Admin/JQAdm/Cms/Content/Standard.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -280,7 +280,7 @@
 block discarded – undo
280 280
 			$media[] = [
281 281
 				'name' => $mediaItem->getLabel(),
282 282
 				'src' => $view->content( $mediaItem->getPreview( true ) ),
283
-				'srcset' => join( ', ', $srcset),
283
+				'srcset' => join( ', ', $srcset ),
284 284
 				'type' => 'imageset' // @todo: remove after GrapesJs update
285 285
 			];
286 286
 		}
Please login to merge, or discard this patch.
lib/custom/setup/default/schema/cms.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
 
9 9
 return [
10 10
 	'table' => [
11
-		'mshop_cms' => function ( \Doctrine\DBAL\Schema\Schema $schema ) {
11
+		'mshop_cms' => function( \Doctrine\DBAL\Schema\Schema $schema ) {
12 12
 
13 13
 			$table = $schema->createTable( 'mshop_cms' );
14 14
 			$table->addOption( 'engine', 'InnoDB' );
Please login to merge, or discard this patch.