1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-08-06 21:26:43 +02:00

Remove const

This commit is contained in:
Julien Breux
2016-06-28 18:39:44 +02:00
parent 996f420205
commit b1f107d12d

View File

@@ -20,8 +20,6 @@ use Monolog\Formatter\LogmaticFormatter;
*/ */
class LogmaticHandler extends SocketHandler class LogmaticHandler extends SocketHandler
{ {
const LOGMATIC_URI = '/v1/';
/** /**
* @var string * @var string
*/ */
@@ -54,6 +52,7 @@ class LogmaticHandler extends SocketHandler
} }
$endpoint = $useSSL ? 'ssl://api.logmatic.io:10515' : 'api.logmatic.io:10514'; $endpoint = $useSSL ? 'ssl://api.logmatic.io:10515' : 'api.logmatic.io:10514';
$endpoint .= '/v1/';
parent::__construct($endpoint . self::LOGMATIC_URI, $level, $bubble); parent::__construct($endpoint . self::LOGMATIC_URI, $level, $bubble);