From 03e1ec24c6b0b28d062aba193e5dbab8870c1b87 Mon Sep 17 00:00:00 2001 From: andrey-helldar <10347617+andrey-helldar@users.noreply.github.com> Date: Sun, 15 Feb 2026 20:59:57 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=A6=8B=20The=20code=20style=20has=20been?= =?UTF-8?q?=20fixed?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Services/DeviationService.php | 2 -- src/Services/ResultService.php | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/src/Services/DeviationService.php b/src/Services/DeviationService.php index afce120..7ea2f4b 100644 --- a/src/Services/DeviationService.php +++ b/src/Services/DeviationService.php @@ -21,8 +21,6 @@ public function __construct( /** * @param array> $collection - * - * @return array */ public function calculate(array $collection): array { diff --git a/src/Services/ResultService.php b/src/Services/ResultService.php index e59cf02..c354f79 100644 --- a/src/Services/ResultService.php +++ b/src/Services/ResultService.php @@ -94,7 +94,7 @@ public function max(array $times, array $memory): MetricData public function avg(array $times, array $memory): MetricData { return $this->metric( - time : array_sum($times) / count($times), + time : array_sum($times) / count($times), memory: array_sum($memory) / count($memory), ); }