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!