Bacon / BaconQrCode

QR Code Generator for PHP
BSD 2-Clause "Simplified" License
1.82k stars 208 forks source link

Fix Unsupported operand types: string & int #124

Closed askdkc closed 5 months ago

askdkc commented 1 year ago

need to fix Unsupported operand types: string & int

So I changed: $byte = $bytes[$i] & 0xff; to $byte = ord($bytes[$i]) & 0xff;

DASPRiD commented 1 year ago

Isn't this a duplicate of #122?

askdkc commented 1 year ago

Isn't this a duplicate of #122?

You are right. Let me close my initial PR then😅

DASPRiD commented 5 months ago

@askdkc I'm currently preparing a new major release. Can you close all your PRs and make a single new PR without conflicts? :)

askdkc commented 5 months ago

@DASPRiD

OK.