From e2db1ba533c0ef2962d2e6da8081022c3a977bb4 Mon Sep 17 00:00:00 2001 From: Nico Verbruggen Date: Tue, 3 Mar 2026 17:44:52 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Fix=20duplicate=20docblock?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- phpmon/Common/Shell/ShellProtocol.swift | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/phpmon/Common/Shell/ShellProtocol.swift b/phpmon/Common/Shell/ShellProtocol.swift index 9bdfb59e..3cf4e7df 100644 --- a/phpmon/Common/Shell/ShellProtocol.swift +++ b/phpmon/Common/Shell/ShellProtocol.swift @@ -20,16 +20,6 @@ protocol ShellProtocol: AnyObject { */ var exports: [String: String] { get set } - /** - Run a command synchronously. Use with caution! - - Common usage: - ``` - let output = Shell.sync("php -v") - ``` - - @return The shell output. If the command times out, returns empty output. - */ /** Run a command synchronously. Use with caution!