Created a PeriodCollection, tried ->overlapAll() but it returns the same collection of periods, not overlaps #114
Unanswered
startupskateboard
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I've created the following PeriodCollection:
$dayPeriods = new PeriodCollection();
//period one
//period two
//period three
when I run $overlap = $dayPeriods->overlapAll();
The $overlap is simply the same period collection with exactly the same 3 periods I've defined, it doesn't return the overlaps between the 3 periods inside the period collection.
Any idea why this is happening?
Beta Was this translation helpful? Give feedback.
All reactions