From 4d6ac2f94061c885ebabd9b2a3e0f872131ddb85 Mon Sep 17 00:00:00 2001 From: Adam Harvey Date: Fri, 20 Jul 2012 08:15:14 +0000 Subject: [PATCH] Fix doc bug #62334 (New valid uses of static keyword not included in static keyword doc page) by adding a tip to the oop5.static page linking to the other uses of static. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@326724 c90b9560-bf6c-de11-be94-00142212c4b1 --- language/oop5/static.xml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/language/oop5/static.xml b/language/oop5/static.xml index 6b340a0f0f..4b85fb4940 100644 --- a/language/oop5/static.xml +++ b/language/oop5/static.xml @@ -3,6 +3,19 @@ Static Keyword + + + This page describes the use of the static keyword to + define static methods and properties. static can also + be used to + define static variables + and for + late static bindings. + Please refer to those pages for information on those meanings of + static. + + + Declaring class properties or methods as static makes them accessible without needing an instantiation of the class. A property declared as