Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
butschster authored and actions-user committed Aug 7, 2021
1 parent 69ed1ee commit 8e20625
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion src/Parts/Between.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@

use Butschster\CronExpression\PartValueInterface;
use Cron\CronExpression;
use Webmozart\Assert\Assert;

abstract class Between implements PartValueInterface
{
Expand Down
2 changes: 1 addition & 1 deletion src/Parts/DateTime.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public function updateExpression(CronExpression $expression): void
new SpecificMinutes((int)$this->time->format('i')),
new SpecificHours((int)$this->time->format('G')),
new SpecificDays((int)$this->time->format('j')),
new SpecificMonths((int)$this->time->format('n'))
new SpecificMonths((int)$this->time->format('n')),
];

foreach ($parts as $part) {
Expand Down

0 comments on commit 8e20625

Please sign in to comment.