mirror of
https://codeberg.org/icewind/SMB.git
synced 2026-06-03 17:24:07 +02:00
Implemented IShare::append(), leave ::write() due backwards compatibility
This commit is contained in:
parent
bebed6f456
commit
59519bad2c
5 changed files with 79 additions and 5 deletions
|
|
@ -57,4 +57,11 @@ class ShareTest extends AbstractShareTest {
|
|||
$share = $this->server->getShare($this->config->share);
|
||||
$share->dir($this->root);
|
||||
}
|
||||
|
||||
/**
|
||||
* @expectedException \Icewind\SMB\Exception\InvalidRequestException
|
||||
*/
|
||||
public function testAppendStream() {
|
||||
$fh = $this->share->append($this->root . '/' . $name);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue