1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-08-05 04:37:38 +02:00

[fix] change private vars to protected

This commit is contained in:
Ramil Valitov
2018-11-02 02:52:50 +03:00
committed by Jordi Boggiano
parent 916b034b2b
commit e11012dfde

View File

@@ -27,7 +27,7 @@ class RavenHandler extends AbstractProcessingHandler
/** /**
* Translates Monolog log levels to Raven log levels. * Translates Monolog log levels to Raven log levels.
*/ */
private $logLevels = array( protected $logLevels = array(
Logger::DEBUG => Raven_Client::DEBUG, Logger::DEBUG => Raven_Client::DEBUG,
Logger::INFO => Raven_Client::INFO, Logger::INFO => Raven_Client::INFO,
Logger::NOTICE => Raven_Client::INFO, Logger::NOTICE => Raven_Client::INFO,
@@ -42,7 +42,7 @@ class RavenHandler extends AbstractProcessingHandler
* @var string should represent the current version of the calling * @var string should represent the current version of the calling
* software. Can be any string (git commit, version number) * software. Can be any string (git commit, version number)
*/ */
private $release; protected $release;
/** /**
* @var Raven_Client the client object that sends the message to the server * @var Raven_Client the client object that sends the message to the server