Description
PHP throws a notice about LoggerReflectionUtils::setter() being called in the wrong context because it is being called statically, but is defined as a class method. The static keyword needs to be added to the method signature.
Index: LoggerReflectionUtils.php
===================================================================
— LoggerReflectionUtils.php (revision 806229)
+++ LoggerReflectionUtils.php (working copy)
@@ -139,7 +139,7 @@
- @param string $name
- @param mixed $value
*/
- public function setter($object, $name, $value) {
+ public static function setter($object, $name, $value) {
if (empty($name)) { return false; }