Skip to content

Commit 4690ae1

Browse files
committed
Apply CS fixes
1 parent 5e2de67 commit 4690ae1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Platform/PrePackagedBinaryAssetName.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ private function __construct()
2121
/** @return non-empty-list<non-empty-string> */
2222
public static function packageNames(TargetPlatform $targetPlatform, Package $package): array
2323
{
24-
$debug = $targetPlatform->phpBinaryPath->debugMode() === DebugBuild::Debug ? '-debug' : '';
25-
$tsNoSuffix = $targetPlatform->threadSafety === ThreadSafetyMode::ThreadSafe ? '-zts' : '';
24+
$debug = $targetPlatform->phpBinaryPath->debugMode() === DebugBuild::Debug ? '-debug' : '';
25+
$tsNoSuffix = $targetPlatform->threadSafety === ThreadSafetyMode::ThreadSafe ? '-zts' : '';
2626
$tsWithSuffix = $targetPlatform->threadSafety === ThreadSafetyMode::ThreadSafe ? '-zts' : '-nts';
27-
$libc = $targetPlatform->libcFlavour()->value;
27+
$libc = $targetPlatform->libcFlavour()->value;
2828

2929
$name = $package->extensionName()->name();
3030
$version = $package->version();

0 commit comments

Comments
 (0)