1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-10-19 23:56:17 +02:00

CS fixes, refs #209

This commit is contained in:
Jordi Boggiano
2013-07-11 18:36:07 +02:00
parent 5034b2f97b
commit c933bb67a8

View File

@@ -31,15 +31,15 @@ class PushoverHandler extends SocketHandler
/** /**
* @param string $token Pushover api token * @param string $token Pushover api token
* @param string $user Pushover user id the message will be sent to * @param string $user Pushover user id the message will be sent to
* @param string $title Title sent to Pushover API * @param string $title Title sent to the Pushover API
* @param integer $level The minimum logging level at which this handler will be triggered * @param integer $level The minimum logging level at which this handler will be triggered
* @param Boolean $bubble Whether the messages that are handled can bubble up the stack or not * @param Boolean $bubble Whether the messages that are handled can bubble up the stack or not
* @param Boolean $useSSL Whether to connect via SSL. Required when pushing messages to users that are not * @param Boolean $useSSL Whether to connect via SSL. Required when pushing messages to users that are not
* the pushover.net app owner. OpenSSL is required for this option. * the pushover.net app owner. OpenSSL is required for this option.
* @param integer $highPriorityLevel The minimum logging level at which this handler will start * @param integer $highPriorityLevel The minimum logging level at which this handler will start
* sending "high priority" requestes to Pushover API * sending "high priority" requests to the Pushover API
* @param integer $emergencyLevel The minimum logging level at which this handler will start * @param integer $emergencyLevel The minimum logging level at which this handler will start
* sending "emergency" requests to Pushover API * sending "emergency" requests to the Pushover API
*/ */
public function __construct($token, $user, $title = null, $level = Logger::CRITICAL, $bubble = true, $useSSL = true, $highPriorityLevel = Logger::CRITICAL, $emergencyLevel = Logger::EMERGENCY) public function __construct($token, $user, $title = null, $level = Logger::CRITICAL, $bubble = true, $useSSL = true, $highPriorityLevel = Logger::CRITICAL, $emergencyLevel = Logger::EMERGENCY)
{ {
@@ -75,9 +75,9 @@ class PushoverHandler extends SocketHandler
'timestamp' => $timestamp 'timestamp' => $timestamp
); );
if( $record['level'] >= $this->emergencyLevel ) { if ($record['level'] >= $this->emergencyLevel) {
$dataArray['priority'] = 2; $dataArray['priority'] = 2;
} else if ( $record['level'] >= $this->highPriorityLevel ) { } elseif ($record['level'] >= $this->highPriorityLevel) {
$dataArray['priority'] = 1; $dataArray['priority'] = 1;
} }
@@ -108,5 +108,4 @@ class PushoverHandler extends SocketHandler
public function setEmergencyLevel($value) { public function setEmergencyLevel($value) {
$this->emergencyLevel = $value; $this->emergencyLevel = $value;
} }
} }