Skip to content

Commit cd0d348

Browse files
committed
Fix spelling of context in this function
1 parent 00fe7f6 commit cd0d348

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/Library/Actions/ActionHelper.php

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -144,11 +144,12 @@ public function write(RpcMessageInterface $rpc) : bool {
144144
* Helper function to log through to the Scheduler
145145
* @param string $logLevel
146146
* @param string $message
147-
* @param array $content
147+
* @param array $context
148148
* @return void
149149
*/
150-
public function log(string $logLevel, string $message, array $content = []) {
151-
$this->logger->log($logLevel, $message, $content);
150+
public function log(string $logLevel, string $message, array $context = []): void
151+
{
152+
$this->logger->log($logLevel, $message, $context);
152153
}
153154

154155
/**

0 commit comments

Comments
 (0)