static is special keyword too (patch by anon 11351, doc #54038)

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@318102 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Peter Cowburn 2011-10-14 11:37:17 +00:00
parent 0ad397ef11
commit bc318ee83f

View file

@ -48,8 +48,9 @@ echo MyClass::CONST_VALUE;
</example>
<para>
Two special keywords <varname>self</varname> and <varname>parent</varname>
are used to access properties or methods from inside the class definition.
Three special keywords <varname>self</varname>, <varname>parent</varname> and
<varname>static</varname> are used to access properties or methods from inside
the class definition.
</para>
<example>