From 3a565dc5c41f2b602fe5a9672054ae886f23aeee Mon Sep 17 00:00:00 2001 From: Josh Date: Mon, 13 Oct 2025 17:50:58 -0400 Subject: [PATCH] chore: Fix formatting for linter Signed-off-by: Josh --- lib/public/SetupCheck/CheckServerResponseTrait.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/public/SetupCheck/CheckServerResponseTrait.php b/lib/public/SetupCheck/CheckServerResponseTrait.php index cf456971a76..d4719baee14 100644 --- a/lib/public/SetupCheck/CheckServerResponseTrait.php +++ b/lib/public/SetupCheck/CheckServerResponseTrait.php @@ -117,10 +117,10 @@ trait CheckServerResponseTrait { * @param string $method HTTP method to use (e.g., 'GET', 'POST') * @param string $url Absolute path to check (with webroot, without host); can be the output of `IURLGenerator` * @param array{ignoreSSL?: bool, httpErrors?: bool, options?: array} $options HTTP client options, such as: - * - 'ignoreSSL': Ignore invalid SSL certificates (e.g., self-signed). - * - 'httpErrors': Whether to ignore requests with HTTP error (4xx/5xx) responses. - * True by default (i.e., moves on to the next URL); set to false to not ignore erroneous responses. - * - 'options': Additional options for the HTTP client (see {@see OCP\Http\Client\IClient}). + * - 'ignoreSSL': Ignore invalid SSL certificates (e.g., self-signed). + * - 'httpErrors': Whether to ignore requests with HTTP error (4xx/5xx) responses. + * True by default (i.e., moves on to the next URL); set to false to not ignore erroneous responses. + * - 'options': Additional options for the HTTP client (see {@see OCP\Http\Client\IClient}). * @param bool $isRootRequest If true, targets the host's root path. * @since 31.0.0 */