From 79dfcd6495a7743b4d9d993445c55b83f989c696 Mon Sep 17 00:00:00 2001 From: Jens True Date: Mon, 5 Jun 2023 09:43:50 +0000 Subject: [PATCH] Code standards. --- src/App.php | 2 +- src/Rclone/Rclone.php | 11 +++++++---- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/src/App.php b/src/App.php index 2d97042..b5d543d 100644 --- a/src/App.php +++ b/src/App.php @@ -15,7 +15,7 @@ use Psr\Log\NullLogger; * * @author Jens True * @license https://opensource.org/licenses/gpl-license.php GNU Public License - * @link https://jcktrue.dk + * @link https://jcktrue.dks */ class App { diff --git a/src/Rclone/Rclone.php b/src/Rclone/Rclone.php index 84dffba..8dc7875 100644 --- a/src/Rclone/Rclone.php +++ b/src/Rclone/Rclone.php @@ -71,6 +71,8 @@ class Rclone /** * Calculate the size of a mount/path * + * @param string $path mount/path. + * * @return int Size in bytes */ function getSize(string $path): int @@ -82,10 +84,11 @@ class Rclone /** * Copy from src to dest * - * @param $src Source mount and path - * @param $dest Destination mount and path - * @param $bandwidth Bandwidth limit provided as string - * @return string Stdout from command + * @param $src Source mount and path + * @param $dest Destination mount and path + * @param $bandwidth Bandwidth limit provided as string + * + * @return string Stdout from command */ function copy(string $src, string $dest, string $bandwidth = null): string {