You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
sorry for this late reply. We'll look into this issue for our next release. Our plugin does not use Monolog directly, but our dependencies do, so we have to look into this issue or possibly remove this file from our plugin.
Thanks for letting us know and we'll update you once this is resolved.
Located in:
vendor_prefixed/monolog/monolog/src/monolog/handler/HipChatHandler.php
Line 120
Is currently:
$dataArray = array('notify' => $this->version == self::API_V1 ? $this->notify ? 1 : 0 : ($this->notify ? 'true' : 'false'), 'message' => $record['formatted'], 'message_format' => $this->format, 'color' => $this->getAlertColor($record['level']));
Needs to be updated to:
$dataArray = array('notify' => $this->version == self::API_V1 ? ($this->notify ? 1 : 0) : ($this->notify ? 'true' : 'false'), 'message' => $record['formatted'], 'message_format' => $this->format, 'color' => $this->getAlertColor($record['level']));
Notice added parens ($this->notify ? 1 : 0)
The text was updated successfully, but these errors were encountered: