Skip to content

Commit

Permalink
Silenced a potential innappropriate parameter-mismatch warning
Browse files Browse the repository at this point in the history
  • Loading branch information
smortensen committed Aug 12, 2015
1 parent 733efd0 commit 6e11cef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Server.php
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ private function processNotification($method, $arguments)
*/
private function getCallable($method)
{
return call_user_func($this->interpreter, $method);
return @call_user_func($this->interpreter, $method);
}

/**
Expand Down

0 comments on commit 6e11cef

Please sign in to comment.