Skip to content

Commit 8447e83

Browse files
committed
format
1 parent cf63541 commit 8447e83

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

phper/src/functions.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -647,7 +647,8 @@ impl ZFunc {
647647
}
648648
}
649649

650-
/// Get the type of the function (ZEND_USER_FUNCTION, ZEND_INTERNAL_FUNCTION, etc).
650+
/// Get the type of the function (ZEND_USER_FUNCTION,
651+
/// ZEND_INTERNAL_FUNCTION, etc).
651652
pub fn get_type(&self) -> u8 {
652653
unsafe { self.inner.type_ as u8 }
653654
}

phper/src/values.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,8 @@ impl ExecuteData {
131131
}
132132

133133
/// Gets the current opline line number if available. This represents the
134-
/// line number in the source code where the current operation is being executed.
134+
/// line number in the source code where the current operation is being
135+
/// executed.
135136
pub fn get_lineno(&self) -> Option<u32> {
136137
unsafe {
137138
match u32::from((*self.inner.func).type_) {

0 commit comments

Comments
 (0)