Skip to content

Commit

Permalink
Fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
kylekatarnls committed Feb 7, 2019
1 parent ec411df commit db4ac8c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion src/OpeningHours.php
Expand Up @@ -247,7 +247,7 @@ public function nextOpen(DateTimeInterface $dateTime): DateTimeInterface
->modify('+1 day')
->setTime(0, 0, 0);

if ($this->isOpenAt($dateTime) && !$openingHoursForDay->isOpenAt(Time::fromString('23:59'))) {
if ($this->isOpenAt($dateTime) && ! $openingHoursForDay->isOpenAt(Time::fromString('23:59'))) {
return $dateTime;
}

Expand Down
1 change: 0 additions & 1 deletion src/OpeningHoursForDay.php
Expand Up @@ -90,7 +90,6 @@ function ($timeRange) use ($time) {
]);
}


/**
* @param Time $time
*
Expand Down

0 comments on commit db4ac8c

Please sign in to comment.