Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
Nielsvanpach authored and github-actions[bot] committed Oct 3, 2022
1 parent 714483f commit 3daff0d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/Operations/OverlapTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ public function noOverlappingDates()
public function passing_empty_period_collection_returns_null()
{
$current = Period::make('2018-01-01', '2018-01-31');
$emptyCollection = new PeriodCollection;
$emptyCollection = new PeriodCollection();

$diff = $current->overlap(...$emptyCollection);

Expand Down
2 changes: 1 addition & 1 deletion tests/Operations/SubtractTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ public function it_can_determine_multiple_diffs_for_sure()
public function passing_empty_period_collection_returns_same_period_within_collection()
{
$current = Period::make('2018-01-01', '2018-01-31');
$emptyCollection = new PeriodCollection;
$emptyCollection = new PeriodCollection();

$diff = $current->subtract(...$emptyCollection);

Expand Down

0 comments on commit 3daff0d

Please sign in to comment.