added some docs to shut PhpStorm up

This commit is contained in:
Dylan K. Taylor
2017-10-29 13:02:19 +00:00
parent 7e490ccdf2
commit 8aca373194
3 changed files with 14 additions and 0 deletions

View File

@ -119,6 +119,10 @@ class MainLogger extends \AttachableThreadedLogger{
$this->logDebug = $logDebug;
}
/**
* @param \Throwable $e
* @param array|null $trace
*/
public function logException(\Throwable $e, $trace = null){
if($trace === null){
$trace = $e->getTrace();