Skip to content

Commit

Permalink
[Common] Fix Missing = in if statement
Browse files Browse the repository at this point in the history
  • Loading branch information
onairmarc committed May 20, 2024
1 parent c14e560 commit c68826b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Common/src/Composer/Scripts.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public static function postAutoloadDump(Event $event): void

$isPhpGenesis = false;

if ($packageName = 'phpgenesis/phpgenesis') {
if ($packageName == 'phpgenesis/phpgenesis') {
$isPhpGenesis = true;
echo 'Package is PHPGenesis Monorepo. Modifying IdeHelper::updateEditorConfig() behavior' . PHP_EOL;
}
Expand Down

0 comments on commit c68826b

Please sign in to comment.