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 9402999 commit 12d4571Copy full SHA for 12d4571
src/FluidXPlate/FluidXScanner.php
@@ -54,7 +54,7 @@ public static function parseRawContent(string $rawContent): FluidXPlate
54
$barcodes = [];
55
$id = null;
56
foreach ($lines as $line) {
57
- if ($line === '' || $line === self::READING || $line === self::XTR_96_CONNECTED) {
+ if (in_array($line, ['', self::READING, self::XTR_96_CONNECTED], true)) {
58
continue;
59
}
60
$content = explode(', ', $line);
0 commit comments