Skip to content

Commit

Permalink
phpcs
Browse files Browse the repository at this point in the history
  • Loading branch information
fballiano committed Oct 5, 2024
1 parent e2cd0a4 commit 8c7ece7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/code/core/Mage/Core/functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -326,11 +326,11 @@ function mahoGetComposerInstallationData(): array
$path = realpath($info['install_path']);
$codePools = array_filter(
['local', 'community', 'core'],
fn($dir) => is_dir("$path/app/code/$dir")
fn ($dir) => is_dir("$path/app/code/$dir")
);
$extraDirs = array_filter(
['lib'],
fn($dir) => is_dir("$path/$dir")
fn ($dir) => is_dir("$path/$dir")
);
$packages[$package] = [
'type' => $info['type'],
Expand Down

0 comments on commit 8c7ece7

Please sign in to comment.