Skip to content

Commit

Permalink
remove return statement on method with return type void (#50442)
Browse files Browse the repository at this point in the history
  • Loading branch information
henzeb authored Mar 10, 2024
1 parent 2ebd5e6 commit 20d2d1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Illuminate/Console/BufferedConsoleOutput.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,6 @@ protected function doWrite(string $message, bool $newline): void
$this->buffer .= \PHP_EOL;
}

return parent::doWrite($message, $newline);
parent::doWrite($message, $newline);
}
}

0 comments on commit 20d2d1e

Please sign in to comment.