File tree Expand file tree Collapse file tree 1 file changed +37
-1
lines changed Expand file tree Collapse file tree 1 file changed +37
-1
lines changed Original file line number Diff line number Diff line change @@ -557,7 +557,7 @@ protected function get_imageBase64():bool{
557
557
}
558
558
559
559
/*
560
- * redirect calls to new/renamed variables
560
+ * redirect calls of deprecated variables to new/renamed property
561
561
*/
562
562
563
563
/**
@@ -596,4 +596,40 @@ protected function get_pngCompression():int{
596
596
return $ this ->quality ;
597
597
}
598
598
599
+ /**
600
+ * @deprecated 5.0.0 use QROptions::$transparencyColor instead
601
+ * @see \chillerlan\QRCode\QROptions::$transparencyColor
602
+ * @codeCoverageIgnore
603
+ */
604
+ protected function set_imageTransparencyBG (array $ imageTransparencyBG ):void {
605
+ $ this ->transparencyColor = $ imageTransparencyBG ;
606
+ }
607
+
608
+ /**
609
+ * @deprecated 5.0.0 use QROptions::$transparencyColor instead
610
+ * @see \chillerlan\QRCode\QROptions::$transparencyColor
611
+ * @codeCoverageIgnore
612
+ */
613
+ protected function get_imageTransparencyBG (){
614
+ return $ this ->transparencyColor ;
615
+ }
616
+
617
+ /**
618
+ * @deprecated 5.0.0 use QROptions::$bgColor instead
619
+ * @see \chillerlan\QRCode\QROptions::$bgColor
620
+ * @codeCoverageIgnore
621
+ */
622
+ protected function set_imagickBG (string $ imagickBG ):void {
623
+ $ this ->bgColor = $ imagickBG ;
624
+ }
625
+
626
+ /**
627
+ * @deprecated 5.0.0 use QROptions::$bgColor instead
628
+ * @see \chillerlan\QRCode\QROptions::$bgColor
629
+ * @codeCoverageIgnore
630
+ */
631
+ protected function get_imagickBG (){
632
+ return $ this ->bgColor ;
633
+ }
634
+
599
635
}
You can’t perform that action at this time.
0 commit comments