From 5702007da1bd2d0c822fc13f04fb80aba9fbbc77 Mon Sep 17 00:00:00 2001 From: Sean Harvey Date: Fri, 4 May 2012 11:11:36 +1200 Subject: [PATCH] MINOR Fixing comment to be more concise. --- core/Object.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/core/Object.php b/core/Object.php index 03cb094f3..2b0614fd8 100755 --- a/core/Object.php +++ b/core/Object.php @@ -278,10 +278,9 @@ abstract class Object { /** * Get the value of a static property of a class, even in that property is declared protected (but not private), without any inheritance, - * merging or parent lookup if it doesn't exist on the given class + * merging or parent lookup if it doesn't exist on the given class. * - * In 5.3, we can do this fast using $foo::$bar syntax, but this method then needs to be in a base class of $class - * to bust the protected def + * If using PHP 5.4, we can do this using $foo::$bar syntax. PHP 5.3 uses ReflectionClass to get the static properties instead. * * @static * @param $class - The class to get the static from