Skip to content

Commit 03e1ec2

Browse files
andrey-helldargithub-actions[bot]
authored andcommitted
🦋 The code style has been fixed
1 parent adee480 commit 03e1ec2

2 files changed

Lines changed: 1 addition & 3 deletions

File tree

src/Services/DeviationService.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@ public function __construct(
2121

2222
/**
2323
* @param array<int, array<int|string, ResultData>> $collection
24-
*
25-
* @return array
2624
*/
2725
public function calculate(array $collection): array
2826
{

src/Services/ResultService.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ public function max(array $times, array $memory): MetricData
9494
public function avg(array $times, array $memory): MetricData
9595
{
9696
return $this->metric(
97-
time : array_sum($times) / count($times),
97+
time : array_sum($times) / count($times),
9898
memory: array_sum($memory) / count($memory),
9999
);
100100
}

0 commit comments

Comments
 (0)