@@ -47,7 +47,7 @@ discard block |
||
47 | 47 | * @inheritDoc |
48 | 48 | */ |
49 | 49 | public function dump(string $file = null){ |
50 | - $file ??= $this->options->cachefile; |
|
50 | + $file ??= $this->options->cachefile; |
|
51 | 51 | $saveToFile = $file !== null; |
52 | 52 | |
53 | 53 | switch($this->options->outputType){ |
@@ -187,7 +187,7 @@ discard block |
||
187 | 187 | |
188 | 188 | $cssClass = implode(' ', [ |
189 | 189 | 'qr-'.$M_TYPE, |
190 | - ($M_TYPE & QRMatrix::IS_DARK) === QRMatrix::IS_DARK ? 'dark' : 'light', |
|
190 | + ($M_TYPE&QRMatrix::IS_DARK) === QRMatrix::IS_DARK ? 'dark' : 'light', |
|
191 | 191 | $this->options->cssClass, |
192 | 192 | ]); |
193 | 193 |