Skip to content

Commit

Permalink
minor
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorotwell committed Aug 10, 2021
2 parents 8acdac0 + 04d4fa3 commit 7b88554
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Illuminate/Console/Scheduling/Event.php
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ protected function expressionPasses()
$date = Date::now();

if ($this->timezone) {
$date->setTimezone($this->timezone);
$date = $date->setTimezone($this->timezone);
}

return (new CronExpression($this->expression))->isDue($date->toDateTimeString());
Expand Down
2 changes: 1 addition & 1 deletion src/Illuminate/Foundation/Application.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class Application extends Container implements ApplicationContract, CachesConfig
*
* @var string
*/
const VERSION = '8.53.1';
const VERSION = '8.54.0';

/**
* The base path for the Laravel installation.
Expand Down

0 comments on commit 7b88554

Please sign in to comment.