JobHook: fix typo

This commit is contained in:
Thomas Gelf 2016-06-17 13:52:23 +02:00
parent 83879b5d53
commit 804a2a7fcc

View File

@ -89,13 +89,13 @@ abstract class JobHook
*/
protected function info($message)
{
call_user_func_array(Loger::info, func_num_args());
call_user_func_array(Logger::info, func_num_args());
return $this;
}
protected function warning($message)
{
call_user_func_array(Loger::warn, func_num_args());
call_user_func_array(Logger::warn, func_num_args());
return $this;
}