@@ -31,7 +31,7 @@ discard block |
||
| 31 | 31 | // Register the PSR-3 processor |
| 32 | 32 | $container->share( |
| 33 | 33 | 'monolog.processor.psr3', |
| 34 | - function () |
|
| 34 | + function() |
|
| 35 | 35 | { |
| 36 | 36 | return new PsrLogMessageProcessor; |
| 37 | 37 | } |
@@ -40,7 +40,7 @@ discard block |
||
| 40 | 40 | // Register the web processor |
| 41 | 41 | $container->share( |
| 42 | 42 | 'monolog.processor.web', |
| 43 | - function () |
|
| 43 | + function() |
|
| 44 | 44 | { |
| 45 | 45 | return new WebProcessor; |
| 46 | 46 | } |
@@ -49,7 +49,7 @@ discard block |
||
| 49 | 49 | // Register the main application handler |
| 50 | 50 | $container->share( |
| 51 | 51 | 'monolog.handler.application', |
| 52 | - function (Container $container) |
|
| 52 | + function(Container $container) |
|
| 53 | 53 | { |
| 54 | 54 | /** @var \Joomla\Registry\Registry $config */ |
| 55 | 55 | $config = $container->get('config'); |
@@ -66,7 +66,7 @@ discard block |
||
| 66 | 66 | // Register the database handler |
| 67 | 67 | $container->share( |
| 68 | 68 | 'monolog.handler.database', |
| 69 | - function (Container $container) |
|
| 69 | + function(Container $container) |
|
| 70 | 70 | { |
| 71 | 71 | /** @var \Joomla\Registry\Registry $config */ |
| 72 | 72 | $config = $container->get('config'); |
@@ -87,7 +87,7 @@ discard block |
||
| 87 | 87 | ->alias(LoggerInterface::class, Logger::class) |
| 88 | 88 | ->share( |
| 89 | 89 | Logger::class, |
| 90 | - function (Container $container) |
|
| 90 | + function(Container $container) |
|
| 91 | 91 | { |
| 92 | 92 | return new Logger( |
| 93 | 93 | 'Application', |
@@ -104,7 +104,7 @@ discard block |
||
| 104 | 104 | // Register the database Logger |
| 105 | 105 | $container->share( |
| 106 | 106 | 'monolog.logger.database', |
| 107 | - function (Container $container) |
|
| 107 | + function(Container $container) |
|
| 108 | 108 | { |
| 109 | 109 | return new Logger( |
| 110 | 110 | 'Database', |