From 4af48ac711d71b37801fbb81f01212df56b6018c Mon Sep 17 00:00:00 2001 From: Jonathan Date: Wed, 26 Aug 2026 06:56:23 +0200 Subject: [PATCH] Change setOption method from protected to public --- src/Server.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Server.php b/src/Server.php index 66c94cb..2aefca8 100644 --- a/src/Server.php +++ b/src/Server.php @@ -81,7 +81,7 @@ public function getSshOptions(): array * @param mixed $value * @return void */ - protected function setOption(string $option, $value) + public function setOption(string $option, $value) { $this->options[$option] = $value; }