Skip to content

Commit 12d4571

Browse files
committed
chore: apply rector
1 parent 9402999 commit 12d4571

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/FluidXPlate/FluidXScanner.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public static function parseRawContent(string $rawContent): FluidXPlate
5454
$barcodes = [];
5555
$id = null;
5656
foreach ($lines as $line) {
57-
if ($line === '' || $line === self::READING || $line === self::XTR_96_CONNECTED) {
57+
if (in_array($line, ['', self::READING, self::XTR_96_CONNECTED], true)) {
5858
continue;
5959
}
6060
$content = explode(', ', $line);

0 commit comments

Comments
 (0)