@@ -22,8 +22,8 @@ class LoggerService extends LogService
2222 /**
2323 * Sets the logging channel.
2424 *
25- * @param string $channel The channel name (e.g., 'stack', 'daily', etc.).
26- * @return self Returns the current instance for method chaining.
25+ * @param string $channel
26+ * @return self
2727 */
2828 public function channel (string $ channel ): self
2929 {
@@ -43,8 +43,8 @@ public function channel(string $channel): self
4343 /**
4444 * Logs an informational message.
4545 *
46- * @param mixed $message The message to log.
47- * @param array $context Additional context data.
46+ * @param mixed $message
47+ * @param array $context
4848 * @return void
4949 */
5050 public function info (mixed $ message , array $ context = []): void
@@ -57,8 +57,8 @@ public function info(mixed $message, array $context = []): void
5757 /**
5858 * Logs a notice message.
5959 *
60- * @param mixed $message The message to log.
61- * @param array $context Additional context data.
60+ * @param mixed $message
61+ * @param array $context
6262 * @return void
6363 */
6464 public function notice (mixed $ message , array $ context = []): void
@@ -71,8 +71,8 @@ public function notice(mixed $message, array $context = []): void
7171 /**
7272 * Logs a warning message.
7373 *
74- * @param mixed $message The message to log.
75- * @param array $context Additional context data.
74+ * @param mixed $message
75+ * @param array $context
7676 * @return void
7777 */
7878 public function warning (mixed $ message , array $ context = []): void
@@ -85,8 +85,8 @@ public function warning(mixed $message, array $context = []): void
8585 /**
8686 * Logs an error message.
8787 *
88- * @param mixed $message The message to log.
89- * @param array $context Additional context data.
88+ * @param mixed $message
89+ * @param array $context
9090 * @return void
9191 */
9292 public function error (mixed $ message , array $ context = []): void
@@ -99,8 +99,8 @@ public function error(mixed $message, array $context = []): void
9999 /**
100100 * Logs a debug message.
101101 *
102- * @param mixed $message The message to log.
103- * @param array $context Additional context data.
102+ * @param mixed $message
103+ * @param array $context
104104 * @return void
105105 */
106106 public function debug (mixed $ message , array $ context = []): void
@@ -113,8 +113,8 @@ public function debug(mixed $message, array $context = []): void
113113 /**
114114 * Logs a critical message.
115115 *
116- * @param mixed $message The message to log.
117- * @param array $context Additional context data.
116+ * @param mixed $message
117+ * @param array $context
118118 * @return void
119119 */
120120 public function critical (mixed $ message , array $ context = []): void
@@ -127,8 +127,8 @@ public function critical(mixed $message, array $context = []): void
127127 /**
128128 * Logs an alert message.
129129 *
130- * @param mixed $message The message to log.
131- * @param array $context Additional context data.
130+ * @param mixed $message
131+ * @param array $context
132132 * @return void
133133 */
134134 public function alert (mixed $ message , array $ context = []): void
@@ -141,8 +141,8 @@ public function alert(mixed $message, array $context = []): void
141141 /**
142142 * Logs an emergency message.
143143 *
144- * @param mixed $message The message to log.
145- * @param array $context Additional context data.
144+ * @param mixed $message
145+ * @param array $context
146146 * @return void
147147 */
148148 public function emergency (mixed $ message , array $ context = []): void
@@ -155,7 +155,7 @@ public function emergency(mixed $message, array $context = []): void
155155 /**
156156 * Overrides reader to pass the dynamic channel.
157157 *
158- * @return Logger The configured Monolog logger instance.
158+ * @return Logger
159159 */
160160 protected function reader (): Logger
161161 {
0 commit comments