Skip to content

Commit

Permalink
style: PHP Linting (Pint)
Browse files Browse the repository at this point in the history
  • Loading branch information
RobertBoes authored and github-actions[bot] committed Nov 5, 2024
1 parent 7724cbd commit dbd2203
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/BreadcrumbCollection.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public function __construct(array|Collection $items, ?Closure $initializer = nul
return $result;
}

throw new CannotCreateBreadcrumbException();
throw new CannotCreateBreadcrumbException;
});
}

Expand Down
2 changes: 1 addition & 1 deletion tests/CollectorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public function it_throws_an_exception_when_required_class_does_not_exist()
$this->expectException(PackageNotInstalledException::class);
$this->expectExceptionMessage('dummy/breadcrumbs is not installed');

new InvalidDummyCollector();
new InvalidDummyCollector;
}

#[Test]
Expand Down

0 comments on commit dbd2203

Please sign in to comment.