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 fac365d commit 884dbda
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ protected function getFinder(): Finder
->name('*Controller.php')
->notName('GatewayController.php')
->filter(function (SplFileInfo $item) {
return strpos($item->getPathname(), static::MERCHANT_PORTAL_FOLDER_FILTER) !== false;
return strpos($item->getPathname(), static::MERCHANT_PORTAL_FOLDER_FILTER) !== false || strpos($item->getFilename(), static::MERCHANT_PORTAL_FOLDER_FILTER) !== false;
});

return $finder;
Expand Down

0 comments on commit 884dbda

Please sign in to comment.