Skip to content

Commit c332082

Browse files
committed
Merge branch 'main' of github.com:backstagephp/components
2 parents 0805c28 + 60c0156 commit c332082

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/ComponentsServiceProvider.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ private function setUpEvents(): void
3737
{
3838
Event::listen(VendorTagPublished::class, function (VendorTagPublished $event) {
3939
foreach ($event->paths ?? [] as $path) {
40-
if (!is_dir($path)) {
40+
if (! is_dir($path)) {
4141
continue;
4242
}
4343

@@ -46,7 +46,7 @@ private function setUpEvents(): void
4646
);
4747

4848
foreach ($iterator as $file) {
49-
if (!$file->isFile() || $file->getExtension() !== 'php') {
49+
if (! $file->isFile() || $file->getExtension() !== 'php') {
5050
continue;
5151
}
5252

0 commit comments

Comments
 (0)