get() public method

Returns file contents.
public get ( string $path ) : string
$path string File path
return string
Beispiel #1
0
 /**
  * Tests file contents retrieving if there was a directory name given.
  *
  * @depends testMkdir
  */
 public function testGetIfDir()
 {
     $this->setExpectedException('\\Jyxo\\Webdav\\FileNotExistException');
     $this->client->get($this->dir);
 }