Skip to content

Commit

Permalink
Fix spelling of context in this function
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasnetau committed Feb 6, 2025
1 parent 00fe7f6 commit cd0d348
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/Library/Actions/ActionHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -144,11 +144,12 @@ public function write(RpcMessageInterface $rpc) : bool {
* Helper function to log through to the Scheduler
* @param string $logLevel
* @param string $message
* @param array $content
* @param array $context
* @return void
*/
public function log(string $logLevel, string $message, array $content = []) {
$this->logger->log($logLevel, $message, $content);
public function log(string $logLevel, string $message, array $context = []): void
{
$this->logger->log($logLevel, $message, $context);
}

/**
Expand Down

0 comments on commit cd0d348

Please sign in to comment.