Skip to content

Commit 922fa0f

Browse files
authored
bugfix(zend) Deprecated: Array and string offset access syntax with curly braces is deprecated (#1347)
1 parent 443863d commit 922fa0f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/Zend/Amf/Util/BinaryStream.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ public function readByte()
140140
);
141141
}
142142

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

146146
/**

0 commit comments

Comments
 (0)