From 5c74a442e88ea6c5eeeea3d1e5b3426128ff4d68 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFck=20Piera?= Date: Mon, 20 Nov 2023 10:45:55 +0100 Subject: [PATCH] Fix SSH documentation --- doc/11-ssh.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/doc/11-ssh.md b/doc/11-ssh.md index 43d7524f..892dc440 100644 --- a/doc/11-ssh.md +++ b/doc/11-ssh.md @@ -8,7 +8,7 @@ function: ```php use Castor\Attribute\AsTask; -use function Castor\ssh; +use function Castor\ssh_run; #[AsTask] function ls(): void @@ -29,6 +29,9 @@ Castor provides 2 functions `ssh_upload()` and `ssh_download()` to exchange file between localhost and a remote server: ```php +use function Castor\ssh_download; +use function Castor\ssh_upload; + #[AsTask] function upload_file(): void {