Skip to content

Commit dd76d23

Browse files
committed
Fix StyleCI issues
1 parent a63c164 commit dd76d23

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

app/Services/Composer/VendorModuleService.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ public function getVendorModules(): Collection
8686
})
8787
->filter()
8888
->mapWithKeys(
89-
static fn(ModuleCustomInterface $module): array => [
89+
static fn (ModuleCustomInterface $module): array => [
9090
$module->name() => $module,
9191
]
9292
);
@@ -156,8 +156,8 @@ private function loadVendorModule(string $packageName): ?ModuleInterface
156156
$moduleFile = null;
157157

158158
// Look for the module.php file
159-
if (file_exists($packagePath . DIRECTORY_SEPARATOR . 'module.php')) {
160-
$moduleFile = $packagePath . DIRECTORY_SEPARATOR . 'module.php';
159+
if (file_exists($packagePath . DIRECTORY_SEPARATOR . 'module.php')) {
160+
$moduleFile = $packagePath . DIRECTORY_SEPARATOR . 'module.php';
161161
}
162162

163163
if ($moduleFile === null) {

0 commit comments

Comments
 (0)