stub OCA\NotifyPush\Queue\IQueue

Signed-off-by: chandi Langecker <git@chandi.it>
This commit is contained in:
chandi Langecker
2022-11-09 00:42:47 +01:00
parent b114520d85
commit d7919497b6
2 changed files with 13 additions and 1 deletions

View File

@@ -661,3 +661,16 @@ namespace OC\Files\Storage\Wrapper{
public function getQuota() {}
}
}
namespace OCA\NotifyPush\Queue {
interface IQueue {
/**
* @param string $channel
* @param mixed $message
* @return void
*/
public function push(string $channel, $message);
}
}