1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-10-22 17:16:18 +02:00

Add visibility to constants

This commit is contained in:
George Mponos
2018-11-17 20:38:51 +02:00
parent 6bb347c040
commit c68b71edeb
20 changed files with 45 additions and 45 deletions

View File

@@ -23,8 +23,8 @@ use Throwable;
*/
class JsonFormatter extends NormalizerFormatter
{
const BATCH_MODE_JSON = 1;
const BATCH_MODE_NEWLINES = 2;
public const BATCH_MODE_JSON = 1;
public const BATCH_MODE_NEWLINES = 2;
protected $batchMode;
protected $appendNewline;