Skip to content
This repository has been archived by the owner on Apr 24, 2024. It is now read-only.

Commit

Permalink
fix line
Browse files Browse the repository at this point in the history
  • Loading branch information
Simon Bigelmayr committed Mar 23, 2023
1 parent 603003b commit 30137c7
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/FluidXPlate/FluidXScanner.php
Expand Up @@ -73,9 +73,7 @@ public static function parseRawContent(string $rawContent): FluidXPlate

$barcodeScanResult = $content[1];
$coordinateString = $content[0];
if (self::NO_READ !== $barcodeScanResult
&& self::NO_TUBE !== $barcodeScanResult
) {
if (self::NO_READ !== $barcodeScanResult && self::NO_TUBE !== $barcodeScanResult) {
$barcodes[$coordinateString] = $barcodeScanResult;
}
}
Expand Down

0 comments on commit 30137c7

Please sign in to comment.