Skip to content

Commit

Permalink
Quick fix
Browse files Browse the repository at this point in the history
  • Loading branch information
StaffCollab committed May 1, 2024
1 parent 1b12e55 commit 958ecbb
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/HebrewDate.php
Original file line number Diff line number Diff line change
Expand Up @@ -127,11 +127,7 @@ public function getHebrewDaysPeriod(): Collection
$this->endOfHebrewMonth()
)->days();

dd(collect($days)->each(function ($day) {
dd(self::parse($day));
}));

return collect($days)->each(function ($day) {
return collect($days)->map(function ($day) {
return HebrewDate::parse($day);
});
}
Expand Down

0 comments on commit 958ecbb

Please sign in to comment.