Skip to content

Commit 488e76a

Browse files
committed
Fix CS
1 parent 3695349 commit 488e76a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Runtime/LambdaRuntime.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -403,7 +403,7 @@ private function ping(): void
403403
}
404404

405405
$isColdStart = ColdStartTracker::currentInvocationIsUserFacingColdStart() ? '1' : '0';
406-
$isWarmInvocation = ($isColdStart === '0') ? '1' : '0';
406+
$isWarmInvocation = $isColdStart === '0' ? '1' : '0';
407407

408408
/**
409409
* Here is the content sent to the Bref analytics server.

0 commit comments

Comments
 (0)