Skip to content

Commit c35fc6a

Browse files
Added some missing phpDoc
1 parent f04ebf6 commit c35fc6a

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/Backup/Sync/Sftp.php

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,10 @@ class Sftp implements Sync
3636
*/
3737
protected $remotePath;
3838

39+
/**
40+
* (non-PHPdoc)
41+
* @see \phpbu\Backup\Sync::setup()
42+
*/
3943
public function setup(array $config)
4044
{
4145
if (!class_exists('\\phpseclib\\Net\\SFTP')) {
@@ -56,6 +60,10 @@ public function setup(array $config)
5660
$this->remotePath = !empty($config['path']) ? $config['path'] : '';
5761
}
5862

63+
/**
64+
* (non-PHPdoc)
65+
* @see \phpbu\Backup\Sync::sync()
66+
*/
5967
public function sync(Target $target, Result $result)
6068
{
6169
// silence phpseclib

0 commit comments

Comments
 (0)