Skip to content

Commit

Permalink
Update OptimizeClearCommand.php (#51667)
Browse files Browse the repository at this point in the history
Added "s" for consistency with "optimize" command.
  • Loading branch information
nathanpurcell committed May 31, 2024
1 parent d33c3e5 commit 3672fbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Illuminate/Foundation/Console/OptimizeClearCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public function handle()
'compiled' => fn () => $this->callSilent('clear-compiled') == 0,
'config' => fn () => $this->callSilent('config:clear') == 0,
'events' => fn () => $this->callSilent('event:clear') == 0,
'route' => fn () => $this->callSilent('route:clear') == 0,
'routes' => fn () => $this->callSilent('route:clear') == 0,
'views' => fn () => $this->callSilent('view:clear') == 0,
])->each(fn ($task, $description) => $this->components->task($description, $task));

Expand Down

0 comments on commit 3672fbe

Please sign in to comment.