Skip to content

Commit 42e2156

Browse files
committed
🚿 phan happy
1 parent 4748411 commit 42e2156

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/Data/AlphaNum.php

+1
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,7 @@ public static function decodeSegment(BitBuffer $bitBuffer, int $versionNumber):s
111111
* @throws \chillerlan\QRCode\Data\QRCodeDataException
112112
*/
113113
private function ord(string $chr):int{
114+
/** @phan-suppress-next-line PhanParamSuspiciousOrder */
114115
$ord = strpos(self::CHAR_MAP, $chr);
115116

116117
if($ord === false){

src/Data/Number.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
namespace chillerlan\QRCode\Data;
1212

1313
use chillerlan\QRCode\Common\{BitBuffer, Mode};
14-
use function array_flip, ceil, intdiv, str_split, substr, unpack;
14+
use function ceil, intdiv, substr, unpack;
1515

1616
/**
1717
* Numeric mode: decimal digits 0 to 9

0 commit comments

Comments
 (0)