1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
//! Objects relating to PHP and the Zend engine.
#[cfg(any(docs, feature = "alloc"))]
#[cfg_attr(docs, doc(cfg(feature = "alloc")))]
pub mod alloc;
pub mod args;
pub mod class;
pub mod constants;
pub mod enums;
pub mod exceptions;
pub mod execution_data;
pub mod flags;
pub mod function;
pub mod globals;
pub mod module;
pub mod pack;
pub mod types;