@@ -107,19 +107,19 @@ public function recordCompletion(
107107 // Store samples in sorted sets with timestamp as score
108108 // Use a unique member format: "jobId:value" to ensure each job gets a separate entry
109109 // This allows multiple jobs with the same duration/memory/cpu to be stored
110- $ durationMember = $ jobId . ': ' . $ durationMs ;
110+ $ durationMember = $ jobId. ': ' . $ durationMs ;
111111 /** @var array<string, int> $durationSample */
112112 $ durationSample = [$ durationMember => (int ) $ completedAt ->timestamp ];
113113 $ pipe ->addToSortedSet ($ durationKey , $ durationSample , $ ttl );
114114
115115 // Store memory sample with unique member
116- $ memoryMember = $ jobId . ': ' . $ memoryMb ;
116+ $ memoryMember = $ jobId. ': ' . $ memoryMb ;
117117 /** @var array<string, int> $memorySample */
118118 $ memorySample = [$ memoryMember => (int ) $ completedAt ->timestamp ];
119119 $ pipe ->addToSortedSet ($ memoryKey , $ memorySample , $ ttl );
120120
121121 // Store CPU time sample with unique member
122- $ cpuMember = $ jobId . ': ' . $ cpuTimeMs ;
122+ $ cpuMember = $ jobId. ': ' . $ cpuTimeMs ;
123123 /** @var array<string, int> $cpuSample */
124124 $ cpuSample = [$ cpuMember => (int ) $ completedAt ->timestamp ];
125125 $ pipe ->addToSortedSet ($ cpuKey , $ cpuSample , $ ttl );
0 commit comments