From 6e11cefa7433838ed150e212f2316cc7007e61eb Mon Sep 17 00:00:00 2001 From: Spencer Mortensen Date: Wed, 12 Aug 2015 14:57:30 -0400 Subject: [PATCH] Silenced a potential innappropriate parameter-mismatch warning --- src/Server.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Server.php b/src/Server.php index 2d3fa42..d498348 100644 --- a/src/Server.php +++ b/src/Server.php @@ -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); } /**