From 2546929cc1d147354e7dd258ba6a14e5d80b9892 Mon Sep 17 00:00:00 2001 From: padams Date: Mon, 8 Nov 2021 21:37:18 +0000 Subject: [PATCH] formating. --- src/OwaClient.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/OwaClient.php b/src/OwaClient.php index ca49f71..dfca32e 100644 --- a/src/OwaClient.php +++ b/src/OwaClient.php @@ -105,14 +105,14 @@ private function getHomeDirectory() { // On Unix systems, use the HOME environment variable if ($home = getenv( 'HOME' ) ) { - + return $home; } // Get the HOMEDRIVE and HOMEPATH values for Windows hosts $home_drive = getenv('HOMEDRIVE'); $home_path = getenv('HOMEPATH'); - + return ($home_drive && $home_path) ? $home_drive . $home_path : null; }