From a2eb2d2559e0b4b0ed8f3dedc9c56e031b462f11 Mon Sep 17 00:00:00 2001 From: Tim Yiu Date: Thu, 9 Nov 2023 15:05:48 -0800 Subject: [PATCH] fix Experiment.php comments --- src/Experiment.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Experiment.php b/src/Experiment.php index 1f39d5b..e9f4347 100644 --- a/src/Experiment.php +++ b/src/Experiment.php @@ -16,9 +16,9 @@ class Experiment * Initializes a {@link RemoteEvaluationClient} instance. If a RemoteEvaluationClient instance has already been * initialized with the same apiKey, the existing instance will be returned. * - * @param string $apiKey The API key. This can be found in the Experiment settings and should not + * @param $apiKey string The API key. This can be found in the Experiment settings and should not * be null or empty. - * @param ?RemoteEvaluationConfig $config see {@link RemoteEvaluationConfig} for configuration options + * @param $config ?RemoteEvaluationConfig see {@link RemoteEvaluationConfig} for configuration options * @return RemoteEvaluationClient */ public function initializeRemote(string $apiKey, ?RemoteEvaluationConfig $config = null): RemoteEvaluationClient @@ -34,9 +34,9 @@ public function initializeRemote(string $apiKey, ?RemoteEvaluationConfig $config * Initializes a {@link LocalEvaluationClient} instance. If a LocalEvaluationClient instance has already been * initialized with the same apiKey, the existing instance will be returned. * - * @param string $apiKey The API key. This can be found in the Experiment settings and should not + * @param $apiKey string The API key. This can be found in the Experiment settings and should not * be null or empty. - * @param ?LocalEvaluationConfig $config see {@link LocalEvaluationConfig} for configuration options + * @param $config ?LocalEvaluationConfig see {@link LocalEvaluationConfig} for configuration options * @return LocalEvaluationClient */ public function initializeLocal(string $apiKey, ?LocalEvaluationConfig $config = null): LocalEvaluationClient