@@ -433,7 +433,7 @@ public function make()
433
433
$ isStdWrapped = [];
434
434
foreach ($ conf ['shadow. ' ] as $ key => $ value ) {
435
435
$ parameter = rtrim ($ key , '. ' );
436
- if (!$ isStdWrapped [$ parameter ] && isset ($ conf [$ parameter . '. ' ])) {
436
+ if (!( $ isStdWrapped [$ parameter ] ?? false ) && isset ($ conf [$ parameter . '. ' ])) {
437
437
$ conf ['shadow. ' ][$ parameter ] = $ this ->cObj ->stdWrapValue ($ parameter , $ conf );
438
438
$ isStdWrapped [$ parameter ] = 1 ;
439
439
}
@@ -444,7 +444,7 @@ public function make()
444
444
$ isStdWrapped = [];
445
445
foreach ($ conf ['emboss. ' ] as $ key => $ value ) {
446
446
$ parameter = rtrim ($ key , '. ' );
447
- if (!$ isStdWrapped [$ parameter ] && isset ($ conf [$ parameter . '. ' ])) {
447
+ if (!( $ isStdWrapped [$ parameter ] ?? false ) && isset ($ conf [$ parameter . '. ' ])) {
448
448
$ conf ['emboss. ' ][$ parameter ] = $ this ->cObj ->stdWrapValue ($ parameter , $ conf );
449
449
$ isStdWrapped [$ parameter ] = 1 ;
450
450
}
@@ -455,7 +455,7 @@ public function make()
455
455
$ isStdWrapped = [];
456
456
foreach ($ conf ['outline. ' ] as $ key => $ value ) {
457
457
$ parameter = rtrim ($ key , '. ' );
458
- if (!$ isStdWrapped [$ parameter ] && isset ($ conf [$ parameter . '. ' ])) {
458
+ if (!( $ isStdWrapped [$ parameter ] ?? false ) && isset ($ conf [$ parameter . '. ' ])) {
459
459
$ conf ['outline. ' ][$ parameter ] = $ this ->cObj ->stdWrapValue ($ parameter , $ conf );
460
460
$ isStdWrapped [$ parameter ] = 1 ;
461
461
}
0 commit comments