Skip to content

Commit 92f802f

Browse files
committed
typo
1 parent acf13e2 commit 92f802f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/Internal/ComposerHelper.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ final class ComposerHelper
2323

2424
private static ?string $betterReflectionVersion = null;
2525

26-
private static ?string $phpstomStubsVersion = null;
26+
private static ?string $phpstormStubsVersion = null;
2727

2828
private static ?string $phpDocParserVersion = null;
2929

@@ -128,17 +128,17 @@ public static function getBetterReflectionVersion(): string
128128

129129
public static function getPhpStormStubsVersion(): string
130130
{
131-
if (self::$phpstomStubsVersion !== null) {
132-
return self::$phpstomStubsVersion;
131+
if (self::$phpstormStubsVersion !== null) {
132+
return self::$phpstormStubsVersion;
133133
}
134134

135135
$installed = self::getInstalled();
136136
$rootPackage = $installed['versions']['jetbrains/phpstorm-stubs'] ?? null;
137137
if ($rootPackage === null) {
138-
return self::$phpstomStubsVersion = self::UNKNOWN_VERSION;
138+
return self::$phpstormStubsVersion = self::UNKNOWN_VERSION;
139139
}
140140

141-
return self::$phpstomStubsVersion = self::processPackageVersion($rootPackage);
141+
return self::$phpstormStubsVersion = self::processPackageVersion($rootPackage);
142142
}
143143

144144
public static function getPhpDocParserVersion(): string

0 commit comments

Comments
 (0)