Skip to content

Commit

Permalink
Merge pull request #2026 from alissn/FixLoadModules
Browse files Browse the repository at this point in the history
[fix] fix load modules
  • Loading branch information
dcblogdev authored Feb 18, 2025
2 parents d7b56f7 + cb26cb2 commit 6a987af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ModuleManifest.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public function __construct(Filesystem $files, array $paths, string $manifestPat
*/
public function getProviders(): array
{
if (! is_null($this->manifest)) {
if (! empty($this->manifest)) {
return $this->manifest;
}

Expand Down

0 comments on commit 6a987af

Please sign in to comment.