style and error message fixes

This commit is contained in:
Robin Appelman 2018-08-28 16:17:02 +02:00
commit aec9b6f2f8
2 changed files with 11 additions and 11 deletions

View file

@ -345,16 +345,16 @@ class Share extends AbstractShare {
});
}
/**
/**
* Append to stream
* Note: smbclient does not support this (Use php-libsmbclient)
*
* @param string $target
*
* @throws \Icewind\SMB\Exception\DependencyException
*
* @throws \Icewind\SMB\Exception\DependencyException
*/
public function append($target) {
throw new DependencyException('php-libsmbclient not installed');
throw new DependencyException('php-libsmbclient is required for append');
}
/**