We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c760c5 commit 0f31e08Copy full SHA for 0f31e08
src/Output/QRMarkup.php
@@ -82,7 +82,9 @@ public function dump(string $file = null):string{
82
/**
83
* returns a string with all css classes for the current element
84
*/
85
- abstract protected function getCssClass(int $M_TYPE):string;
+ protected function getCssClass(int $M_TYPE):string{
86
+ return $this->options->cssClass;
87
+ }
88
89
90
*
src/Output/QRMarkupHTML.php
@@ -50,11 +50,4 @@ protected function createMarkup(bool $saveToFile):string{
50
return $html;
51
}
52
53
- /**
54
- * @inheritDoc
55
- */
56
- protected function getCssClass(int $M_TYPE):string{
57
- return $this->options->cssClass;
58
- }
59
-
60
0 commit comments