void pseudo-type

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@223767 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Jakub Vrana 2006-11-23 09:07:21 +00:00
parent d167e9a24b
commit ea7d065115

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.168 $ -->
<!-- $Revision: 1.169 $ -->
<chapter id="language.types">
<title>Types</title>
@ -2397,6 +2397,16 @@ call_user_func(array($obj, 'myCallbackMethod'));
</para>
</sect2>
<sect2 id="language.types.void">
<title>void</title>
<para>
<literal>void</literal> in return type means that the return value is
useless. <literal>void</literal> in parameters list means that the
function doesn't accept any parameters.
</para>
</sect2>
</sect1>
<sect1 id="language.types.type-juggling">