Skip to content

Commit 1e47d0d

Browse files
committed
Code-style patch.
1 parent 0465946 commit 1e47d0d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Scanner.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1336,13 +1336,13 @@ private function dataHandler(string $str = '', int $Depth = 0, string $OriginalF
13361336
strpos(substr($str_hex, $Fragment[2] * 2, $Fragment[3] * 2), $Fragment[1]) === false
13371337
) || (
13381338
$Fragment[0] === 'FD-RX' &&
1339-
!preg_match('/(?:' . $Fragment[1] . ')/i', substr($str_hex, $Fragment[2] * 2, $Fragment[3]*2))
1339+
!preg_match('/(?:' . $Fragment[1] . ')/i', substr($str_hex, $Fragment[2] * 2, $Fragment[3] * 2))
13401340
) || (
13411341
$Fragment[0] === 'FD-NORM' &&
13421342
strpos(substr($str_hex_norm, $Fragment[2] * 2, $Fragment[3] * 2), $Fragment[1]) === false
13431343
) || (
13441344
$Fragment[0] === 'FD-NORM-RX' &&
1345-
!preg_match('/(?:' . $Fragment[1] . ')/i', substr($str_hex_norm, $Fragment[2] * 2, $Fragment[3]*2))
1345+
!preg_match('/(?:' . $Fragment[1] . ')/i', substr($str_hex_norm, $Fragment[2] * 2, $Fragment[3] * 2))
13461346
)
13471347
) {
13481348
continue 2;

0 commit comments

Comments
 (0)