fix since

This commit is contained in:
Robin Appelman 2016-07-15 13:58:44 +02:00
parent e34ee9099d
commit d485cfd40d
1 changed files with 4 additions and 0 deletions

View File

@ -23,6 +23,8 @@ namespace OCP\Files\Storage;
/**
* Storage backend that support active notifications
*
* @since 9.1.0
*/
interface INotifyStorage {
const NOTIFY_ADDED = 1;
@ -42,6 +44,8 @@ interface INotifyStorage {
*
* @param string $path
* @param callable $callback
*
* @since 9.1.0
*/
public function listen($path, callable $callback);
}