Completed
Push — master ( d31f33...bb037d )
by Aimeos
02:23
created
admin/jsonadm/src/Admin/JsonAdm/Base.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -392,7 +392,7 @@  discard block
 block discarded – undo
392 392
 		if( isset( $entry->attributes ) && ( $attr = (array) $entry->attributes ) ) {
393 393
 			if( $item instanceof \Aimeos\MShop\Common\Item\Config\Iface ) {
394 394
 				$key = str_replace( '/', '.', $this->path ) . '.config';
395
-				$attr[ $key ] = (array) ( $attr[ $key ] ?? [] );
395
+				$attr[$key] = (array) ( $attr[$key] ?? [] );
396 396
 			}
397 397
 			$item = $item->fromArray( $attr, true );
398 398
 		}
@@ -430,7 +430,7 @@  discard block
 block discarded – undo
430 430
 
431 431
 					if( isset( $data->attributes ) && ( $attr = (array) $data->attributes ) ) {
432 432
 						$key = str_replace( '/', '.', $this->path ) . '.config';
433
-						$attr[ $key ] = (array) ( $attr[ $key ] ?? [] );
433
+						$attr[$key] = (array) ( $attr[$key] ?? [] );
434 434
 						$item = $item->fromArray( $attr, true );
435 435
 					}
436 436
 
Please login to merge, or discard this patch.