From 15fe95e1942950b3897f8b2e6fd6c5f9cea28508 Mon Sep 17 00:00:00 2001 From: Richard van Laak Date: Fri, 31 Oct 2014 15:11:53 +0100 Subject: [PATCH] Update PushoverHandler.php ... with extra parameters for when the priority = 2 https://pushover.net/api#priority --- src/Monolog/Handler/PushoverHandler.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Monolog/Handler/PushoverHandler.php b/src/Monolog/Handler/PushoverHandler.php index ddd3d538..547849f0 100644 --- a/src/Monolog/Handler/PushoverHandler.php +++ b/src/Monolog/Handler/PushoverHandler.php @@ -81,6 +81,7 @@ class PushoverHandler extends SocketHandler $this->parameters = array_flip(array( 'token', 'user', 'message', // these are the required parameters 'device', 'title', 'url', 'url_title', 'priority', 'timestamp', 'sound', + 'retry', 'expire', 'callback', )); }