Skip to content

Commit

Permalink
bugfix(zend) Deprecated: Array and string offset access syntax with c…
Browse files Browse the repository at this point in the history
…urly braces is deprecated (#1347)
  • Loading branch information
daim2k5 authored Dec 26, 2020
1 parent 443863d commit 922fa0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Zend/Amf/Util/BinaryStream.php
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ public function readByte()
);
}

return ord($this->_stream{$this->_needle++});
return ord($this->_stream[$this->_needle++]);
}

/**
Expand Down

0 comments on commit 922fa0f

Please sign in to comment.