mirror of
https://github.com/awslabs/aws-crt-php.git
synced 2026-08-17 17:47:12 +00:00
Fix deprecated use of ${var} in Encoding.php (#108)
This commit is contained in:
@@ -24,7 +24,7 @@ final class Encoding {
|
||||
public static function decodeString($buffer) {
|
||||
$len = unpack("N", $buffer)[1];
|
||||
$buffer = substr($buffer, 4);
|
||||
$str = unpack("a${len}", $buffer)[1];
|
||||
$str = unpack("a{$len}", $buffer)[1];
|
||||
return [$len, $str];
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user