我已经在本地 laravel 3 应用程序中安装了 bundle fireAnbu,但我不知道如何使用它!(感觉很傻)
我有'fireanbu' => array('auto' => true),
bundles.php 和'profiler' => true,
fireanbu/config/fireanbu.php,我试过了:
fireanbu::log('something');
$fireanbu->log('something');
FirePHP::log('something');
$FirePHP->log('something');
FB::log('something');
$fb->log('something');
我在 fireanbu/start.php 中查看了线索,但我猜 :(
到目前为止,我得到的最好的线索是:
Non-static method FirePHP::log() should not be called statically, assuming $this from incompatible context
我查看了http://www.firephp.org/HQ/Use.htm,看起来 fireanbu 正在使用 OO API。
我做错了什么/我应该如何在我的控制器中调用它?