Skip to content

Commit 7b88554

Browse files
committed
minor
2 parents 8acdac0 + 04d4fa3 commit 7b88554

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Illuminate/Console/Scheduling/Event.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@ protected function expressionPasses()
324324
$date = Date::now();
325325

326326
if ($this->timezone) {
327-
$date->setTimezone($this->timezone);
327+
$date = $date->setTimezone($this->timezone);
328328
}
329329

330330
return (new CronExpression($this->expression))->isDue($date->toDateTimeString());

src/Illuminate/Foundation/Application.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class Application extends Container implements ApplicationContract, CachesConfig
3333
*
3434
* @var string
3535
*/
36-
const VERSION = '8.53.1';
36+
const VERSION = '8.54.0';
3737

3838
/**
3939
* The base path for the Laravel installation.

0 commit comments

Comments
 (0)