From 214e7d8d99e1b6ac6622b458e460a08cafdd06e7 Mon Sep 17 00:00:00 2001 From: Arne Blankerts Date: Wed, 20 Sep 2023 16:06:34 +0200 Subject: [PATCH] Remove return type declaration to stick with PHP 5 complaint code --- src/Config.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Config.php b/src/Config.php index 61d935b..9fc8ba1 100644 --- a/src/Config.php +++ b/src/Config.php @@ -88,7 +88,7 @@ public function setHomeDirectory($homeDir) { $this->homeDirectory = $homeDir; } - public function getHomeDirectory(): string { + public function getHomeDirectory() { return $this->homeDirectory; }