From 148e503b31deb2d9b7a444eb29ec502360a9dd2f Mon Sep 17 00:00:00 2001 From: Seven Du Date: Wed, 31 Oct 2018 23:57:44 +0800 Subject: [PATCH] Modified comment block (#7700) * Modified comment block --- src/Composer/Util/RemoteFilesystem.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/Composer/Util/RemoteFilesystem.php b/src/Composer/Util/RemoteFilesystem.php index dc2b33089..6e16520fd 100644 --- a/src/Composer/Util/RemoteFilesystem.php +++ b/src/Composer/Util/RemoteFilesystem.php @@ -114,13 +114,18 @@ class RemoteFilesystem /** * Merges new options * - * @return array $options + * @param array $options */ public function setOptions(array $options) { $this->options = array_replace_recursive($this->options, $options); } + /** + * Check is disable TLS. + * + * @return bool + */ public function isTlsDisabled() { return $this->disableTls === true;