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.
ClassEntry
1 parent 5bf2458 commit 72b0491Copy full SHA for 72b0491
src/php/class.rs
@@ -350,6 +350,12 @@ impl Debug for ClassEntry {
350
f.debug_struct("ClassEntry")
351
.field("name", &name)
352
.field("flags", &self.flags())
353
+ .field("is_interface", &self.is_interface())
354
+ .field(
355
+ "interfaces",
356
+ &self.interfaces().map(|iter| iter.collect::<Vec<_>>()),
357
+ )
358
+ .field("parent", &self.parent())
359
.finish()
360
}
361
0 commit comments