Skip to content

Commit

Permalink
FRW-9645 Enable feature development. (#11264)
Browse files Browse the repository at this point in the history
FRW-9645 Enable feature development.
  • Loading branch information
annakotiuk authored Jan 7, 2025
1 parent aadccfa commit 3ee68a0
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/Spryker/Zed/ModuleFinder/ModuleFinderConfig.php
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,6 @@ public function getPathsToInternalOrganizations(): array
$nonsplitDirectory = sprintf('%s/vendor/spryker/%s/Bundles/', APPLICATION_ROOT_DIR, $organizationPathFragment);
if (is_dir($nonsplitDirectory)) {
$organizationPaths[] = $nonsplitDirectory;

continue;
}

$splitDirectory = sprintf('%s/vendor/%s/', APPLICATION_ROOT_DIR, $organizationPathFragment);
Expand All @@ -87,6 +85,11 @@ public function getPathsToInternalOrganizations(): array
}
}

$nonsplitFeatureDirectory = sprintf('%s/vendor/spryker/spryker/Features/', APPLICATION_ROOT_DIR);
if (is_dir($nonsplitFeatureDirectory)) {
$organizationPaths[] = $nonsplitFeatureDirectory;
}

return $organizationPaths;
}
}

0 comments on commit 3ee68a0

Please sign in to comment.