Esempio n. 1
0
 /**
  * @param string $path
  * @param callable $callback callable which will be called for each received change
  * @return mixed
  */
 public function notify($path, callable $callback)
 {
     // php-smbclient does support notify (https://github.com/eduardok/libsmbclient-php/issues/29)
     // so we use the smbclient based backend for this
     $share = new Share($this->server, $this->getName());
     $share->notify($path, $callback);
 }