get() public méthode

Returns file contents.
public get ( string $path ) : string
$path string File path
Résultat string
Exemple #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);
 }