@@ -139,8 +139,8 @@ pub use ext_php_rs_derive::php_const;
139
139
/// ```
140
140
///
141
141
/// [`strpos`]: https://www.php.net/manual/en/function.strpos.php
142
- /// [`IntoZval`]: ext_php_rs::php::types::zval ::IntoZval
143
- /// [`Zval`]: ext_php_rs::php:: types::zval ::Zval
142
+ /// [`IntoZval`]: crate::convert ::IntoZval
143
+ /// [`Zval`]: crate:: types::Zval
144
144
pub use ext_php_rs_derive:: php_extern;
145
145
146
146
/// Attribute used to annotate a function as a PHP function.
@@ -289,12 +289,12 @@ pub use ext_php_rs_derive::php_extern;
289
289
///
290
290
/// [`Result<T, E>`]: std::result::Result
291
291
/// [`FunctionBuilder`]: crate::php::function::FunctionBuilder
292
- /// [`FromZval`]: crate::php::types::zval ::FromZval
293
- /// [`IntoZval`]: crate::php::types::zval ::IntoZval
294
- /// [`Zval`]: crate::php:: types::zval:: Zval
295
- /// [`Binary<T>`]: crate::php::types:: binary::Binary
296
- /// [`ZendCallable`]: crate::php:: types::callable ::ZendCallable
297
- /// [`PhpException`]: crate::php::exceptions ::PhpException
292
+ /// [`FromZval`]: crate::convert ::FromZval
293
+ /// [`IntoZval`]: crate::convert ::IntoZval
294
+ /// [`Zval`]: crate::types::Zval.
295
+ /// [`Binary<T>`]: crate::binary::Binary
296
+ /// [`ZendCallable`]: crate::types::ZendCallable
297
+ /// [`PhpException`]: crate::exception ::PhpException
298
298
pub use ext_php_rs_derive:: php_function;
299
299
300
300
/// Annotates a structs `impl` block, declaring that all methods and constants
@@ -670,12 +670,12 @@ pub use ext_php_rs_derive::php_startup;
670
670
/// var_dump(give_union()); // int(5)
671
671
/// ```
672
672
///
673
- /// [`FromZval`]: crate::php::types::zval ::FromZval
674
- /// [`IntoZval`]: crate::php::types::zval ::IntoZval
675
- /// [`FromZendObject`]: crate::php::types::object ::FromZendObject
676
- /// [`IntoZendObject`]: crate::php::types::object ::IntoZendObject
677
- /// [`Zval`]: crate::php:: types::zval:: Zval
678
- /// [`Zval::string`]: crate::php:: types::zval:: Zval::string
673
+ /// [`FromZval`]: crate::convert ::FromZval
674
+ /// [`IntoZval`]: crate::convert ::IntoZval
675
+ /// [`FromZendObject`]: crate::convert ::FromZendObject
676
+ /// [`IntoZendObject`]: crate::convert ::IntoZendObject
677
+ /// [`Zval`]: crate::types::Zval.
678
+ /// [`Zval::string`]: crate::types::Zval. ::string
679
679
pub use ext_php_rs_derive:: ZvalConvert ;
680
680
681
681
/// Defines an `extern` function with the Zend fastcall convention based on
0 commit comments