From 15a389dd8d1764565543ca063db2857940d3f00d Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Thu, 16 Dec 2021 22:17:20 +0100 Subject: [PATCH] CS fixes --- Dotenv.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dotenv.php b/Dotenv.php index 8180f4b..16a252d 100644 --- a/Dotenv.php +++ b/Dotenv.php @@ -54,8 +54,8 @@ public function __construct(bool $usePutenv = true) /** * Loads one or several .env files. * - * @param string $path A file to load - * @param ...string $extraPaths A list of additional files to load + * @param string $path A file to load + * @param string[] ...$extraPaths A list of additional files to load * * @throws FormatException when a file has a syntax error * @throws PathException when a file does not exist or is not readable @@ -112,8 +112,8 @@ public function loadEnv(string $path, string $varName = 'APP_ENV', string $defau /** * Loads one or several .env files and enables override existing vars. * - * @param string $path A file to load - * @param ...string $extraPaths A list of additional files to load + * @param string $path A file to load + * @param string[] ...$extraPaths A list of additional files to load * * @throws FormatException when a file has a syntax error * @throws PathException when a file does not exist or is not readable