We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7c905f3 + 4521bbc commit baae0baCopy full SHA for baae0ba
phper/src/values.rs
@@ -157,7 +157,7 @@ impl ExecuteData {
157
}
158
159
160
- /// Gets associated return value.
+ /// Gets mutable reference to associated return value.
161
pub fn get_return_value_mut(&mut self) -> Option<&mut ZVal> {
162
unsafe {
163
let val = self.inner.return_value;
@@ -170,7 +170,7 @@ impl ExecuteData {
170
self.inner.return_value as *mut ZVal
171
172
173
- /// Gets associated return value pointer.
+ /// Gets immutable pointer to associated return value.
174
pub fn get_return_value_ptr(&self) -> *const ZVal {
175
self.inner.return_value as *const ZVal
176
0 commit comments