show/hide this revision's text 2 clarification

here's

use a wrapper class. this method which doesn't require you has the following benefits:

  • no need to change your underlying classes (well beyond removing the class structure / method signatures
  • change logginginfo you might currently have):? just update this classTestClass { public function methodOne() {} public function methodTwo() {} }
  • update object calls vs inserting code into every class you want to log

.

class LogWatch {
    function __construct($class)    {
        $this->obj  =   $class;
    }

    function __call($method, $args) {
        $this->methods  =   get_class_methods($this->obj);
        if (in_array($method, $this->methods) get_class_methods($this->obj) ) ) {
            Logger::logEntry();
            Logger::info('Parameter '.implode(', ', $args) );

            call_user_func_array(array($this->obj, $method), $args);

            Logger::logExit();

        } else {
            throw new BadMethodCallException();
        }
    }
}

usage:$test = new LogWatch(new TestClass() ); $test->methodOne(); >tester(); // you can use instances of LogWatch()`LogWatch()` just like your watched class , // including passing appropriate params: $test->methodOne($param1, >tester($param1, $param2);

and it'll call the method with appropriate params.

show/hide this revision's text 1

here's a method which doesn't require you to change your underlying classes (well beyond removing the logging info you might currently have):

class TestClass {
    public function methodOne() {}
    public function methodTwo() {}
}

class LogWatch {
    function __construct($class)    {
        $this->obj  =   $class;
    }

    function __call($method, $args) {
        $this->methods  =   get_class_methods($this->obj);
        if (in_array($method, $this->methods) ) {
            Logger::logEntry();
            Logger::info('Parameter '.implode(', ', $args) );

            call_user_func_array(array($this->obj, $method), $args);

            Logger::logExit();

        } else {
            throw new BadMethodCallException();
        }
    }
}

usage:

$test = new LogWatch(new TestClass() );
$test->methodOne();

you can use instances of LogWatch() just like your watched class, including passing appropriate params:

$test->methodOne($param1, $param2);

and it'll call the method with appropriate params.