Passed
Push — master ( 166bfd...8fa19b )
by Aimeos
17:42
created
src/Admin/JQAdm/Product/Text/Standard.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -309,7 +309,7 @@
 block discarded – undo
309 309
 			foreach( (array) $this->val( $entry, 'config', [] ) as $cfg )
310 310
 			{
311 311
 				if( ( $key = trim( $cfg['key'] ?? '' ) ) !== '' && ( $val = trim( $cfg['val'] ?? '' ) ) !== '' ) {
312
-					$listItem->setConfigValue( $key, json_decode( $val, true ) ??  $val );
312
+					$listItem->setConfigValue( $key, json_decode( $val, true ) ?? $val );
313 313
 				}
314 314
 			}
315 315
 
Please login to merge, or discard this patch.
src/Admin/JQAdm/Product/Standard.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -525,7 +525,7 @@
 block discarded – undo
525 525
 		foreach( (array) $this->val( $data, 'config', [] ) as $cfg )
526 526
 		{
527 527
 			if( ( $key = trim( $cfg['key'] ?? '' ) ) !== '' && ( $val = trim( $cfg['val'] ?? '' ) ) !== '' ) {
528
-				$item->setConfigValue( $key, json_decode( $val, true ) ??  $val );
528
+				$item->setConfigValue( $key, json_decode( $val, true ) ?? $val );
529 529
 			}
530 530
 		}
531 531
 
Please login to merge, or discard this patch.
src/Admin/JQAdm/Service/Price/Standard.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -313,7 +313,7 @@
 block discarded – undo
313 313
 			foreach( (array) $this->val( $entry, 'config', [] ) as $cfg )
314 314
 			{
315 315
 				if( ( $key = trim( $cfg['key'] ?? '' ) ) !== '' && ( $val = trim( $cfg['val'] ?? '' ) ) !== '' ) {
316
-					$listItem->setConfigValue( $key, json_decode( $val, true ) ??  $val );
316
+					$listItem->setConfigValue( $key, json_decode( $val, true ) ?? $val );
317 317
 				}
318 318
 			}
319 319
 
Please login to merge, or discard this patch.
src/Admin/JQAdm/Service/Media/Standard.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -358,7 +358,7 @@
 block discarded – undo
358 358
 			foreach( (array) $this->val( $entry, 'config', [] ) as $cfg )
359 359
 			{
360 360
 				if( ( $key = trim( $cfg['key'] ?? '' ) ) !== '' && ( $val = trim( $cfg['val'] ?? '' ) ) !== '' ) {
361
-					$listItem->setConfigValue( $key, json_decode( $val, true ) ??  $val );
361
+					$listItem->setConfigValue( $key, json_decode( $val, true ) ?? $val );
362 362
 				}
363 363
 			}
364 364
 
Please login to merge, or discard this patch.
src/Admin/JQAdm/Service/Text/Standard.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -309,7 +309,7 @@
 block discarded – undo
309 309
 			foreach( (array) $this->val( $entry, 'config', [] ) as $cfg )
310 310
 			{
311 311
 				if( ( $key = trim( $cfg['key'] ?? '' ) ) !== '' && ( $val = trim( $cfg['val'] ?? '' ) ) !== '' ) {
312
-					$listItem->setConfigValue( $key, json_decode( $val, true ) ??  $val );
312
+					$listItem->setConfigValue( $key, json_decode( $val, true ) ?? $val );
313 313
 				}
314 314
 			}
315 315
 
Please login to merge, or discard this patch.