Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[10.x] fix return types #50461

Merged
merged 1 commit into from
Mar 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Illuminate/Console/Scheduling/ScheduleRunCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ protected function shouldInterrupt()
/**
* Ensure the interrupt signal is cleared.
*
* @return bool
* @return void
*/
protected function clearInterruptSignal()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ protected function createDotenv($app)
* Write the error information to the screen and exit.
*
* @param \Dotenv\Exception\InvalidFileException $e
* @return void
* @return never
*/
protected function writeErrorAndDie(InvalidFileException $e)
{
Expand Down
2 changes: 1 addition & 1 deletion src/Illuminate/Queue/Listener.php
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ public function memoryExceeded($memoryLimit)
/**
* Stop listening and bail out of the script.
*
* @return void
* @return never
*/
public function stop()
{
Expand Down
2 changes: 1 addition & 1 deletion src/Illuminate/Routing/Route.php
Original file line number Diff line number Diff line change
Expand Up @@ -577,7 +577,7 @@ public function setBindingFields(array $bindingFields)
* Get the parent parameter of the given parameter.
*
* @param string $parameter
* @return string
* @return string|null
*/
public function parentOfParameter($parameter)
{
Expand Down
Loading