@@ -2,9 +2,9 @@ |
||
| 2 | 2 | |
| 3 | 3 | namespace Spatie\Period; |
| 4 | 4 | |
| 5 | -use Iterator; |
|
| 6 | -use Countable; |
|
| 7 | 5 | use ArrayAccess; |
| 6 | +use Countable; |
|
| 7 | +use Iterator; |
|
| 8 | 8 | |
| 9 | 9 | class PeriodCollection implements ArrayAccess, Iterator, Countable |
| 10 | 10 | { |
@@ -2,15 +2,15 @@ |
||
| 2 | 2 | |
| 3 | 3 | namespace Spatie\Period; |
| 4 | 4 | |
| 5 | -use DateTime; |
|
| 6 | -use DatePeriod; |
|
| 7 | 5 | use DateInterval; |
| 6 | +use DatePeriod; |
|
| 7 | +use DateTime; |
|
| 8 | 8 | use DateTimeImmutable; |
| 9 | 9 | use DateTimeInterface; |
| 10 | 10 | use IteratorAggregate; |
| 11 | +use Spatie\Period\Exceptions\CannotComparePeriods; |
|
| 11 | 12 | use Spatie\Period\Exceptions\InvalidDate; |
| 12 | 13 | use Spatie\Period\Exceptions\InvalidPeriod; |
| 13 | -use Spatie\Period\Exceptions\CannotComparePeriods; |
|
| 14 | 14 | |
| 15 | 15 | class Period implements IteratorAggregate |
| 16 | 16 | { |
@@ -325,6 +325,7 @@ discard block |
||
| 325 | 325 | |
| 326 | 326 | /** |
| 327 | 327 | * @param \Spatie\Period\Period ...$periods |
| 328 | + * @param Period[] $periods |
|
| 328 | 329 | * |
| 329 | 330 | * @return \Spatie\Period\PeriodCollection|static[] |
| 330 | 331 | */ |
@@ -347,6 +348,7 @@ discard block |
||
| 347 | 348 | |
| 348 | 349 | /** |
| 349 | 350 | * @param \Spatie\Period\Period ...$periods |
| 351 | + * @param Period[] $periods |
|
| 350 | 352 | * |
| 351 | 353 | * @return static |
| 352 | 354 | */ |
@@ -409,6 +411,7 @@ discard block |
||
| 409 | 411 | |
| 410 | 412 | /** |
| 411 | 413 | * @param \Spatie\Period\Period ...$periods |
| 414 | + * @param Period[] $periods |
|
| 412 | 415 | * |
| 413 | 416 | * @return \Spatie\Period\PeriodCollection|static[] |
| 414 | 417 | */ |
@@ -451,6 +454,9 @@ discard block |
||
| 451 | 454 | ); |
| 452 | 455 | } |
| 453 | 456 | |
| 457 | + /** |
|
| 458 | + * @param string|null $format |
|
| 459 | + */ |
|
| 454 | 460 | protected static function resolveDate($date, ?string $format): DateTimeImmutable |
| 455 | 461 | { |
| 456 | 462 | if ($date instanceof DateTimeImmutable) { |