From dfb4c933a7db8867002a1f480ca5a1f9314548d8 Mon Sep 17 00:00:00 2001 From: Shyim Date: Sat, 17 Aug 2024 18:24:12 +0200 Subject: [PATCH] fix: phpstan type error --- src/Container/Container.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Container/Container.php b/src/Container/Container.php index 7b569b9..cc8bbec 100644 --- a/src/Container/Container.php +++ b/src/Container/Container.php @@ -117,6 +117,9 @@ public function withHealthCheckCommand(string $command, int $healthCheckInterval return $this; } + /** + * @param array $cmd + */ public function withCmd(array $cmd): self { $this->cmd = $cmd;