Skip to content

Commit 0c58a46

Browse files
committed
Fix a phpmd issue.
1 parent 7e3e313 commit 0c58a46

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Environment.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ public static function getComposerFilename(): string
176176
*/
177177
public static function getComposerLockFilename(): string
178178
{
179-
$composer_filename = static::getComposerFilename();
180-
return pathinfo($composer_filename, PATHINFO_FILENAME) . '.lock';
179+
$filename = static::getComposerFilename();
180+
return pathinfo($filename, PATHINFO_FILENAME) . '.lock';
181181
}
182182
}

0 commit comments

Comments
 (0)