@@ -139,8 +139,8 @@ pub use ext_php_rs_derive::php_const;
139139/// ```
140140///
141141/// [`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
144144pub use ext_php_rs_derive:: php_extern;
145145
146146/// Attribute used to annotate a function as a PHP function.
@@ -289,12 +289,12 @@ pub use ext_php_rs_derive::php_extern;
289289///
290290/// [`Result<T, E>`]: std::result::Result
291291/// [`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
298298pub use ext_php_rs_derive:: php_function;
299299
300300/// Annotates a structs `impl` block, declaring that all methods and constants
@@ -670,12 +670,12 @@ pub use ext_php_rs_derive::php_startup;
670670/// var_dump(give_union()); // int(5)
671671/// ```
672672///
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
679679pub use ext_php_rs_derive:: ZvalConvert ;
680680
681681/// Defines an `extern` function with the Zend fastcall convention based on
0 commit comments