ccampbell / chromelogger

chrome extension for server side console logging

Home Page:http://www.chromelogger.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

List all Public functions ?

daslicht opened this issue · comments

Hi,
is there a way to log all public functions of a PHP Object ?

Lets say I have the following:

class A {
   public function doit(){}
   public function foo(){}
}
$a = new A();

\ChromePhp::log( $a); returns:
A Object {}

Is there a way to make it return :

 public function doit()
 public function foo()

?