stub OCA\NotifyPush\Queue\IQueue

Signed-off-by: chandi Langecker <git@chandi.it>
This commit is contained in:
chandi Langecker
2023-01-03 12:45:11 +01:00
parent b114520d85
commit d7919497b6
2 changed files with 13 additions and 1 deletions
-1
View File
@@ -42,7 +42,6 @@
<referencedClass name="OC\*" />
<referencedClass name="OC" />
<referencedClass name="OC\Security\CSP\ContentSecurityPolicyNonceManager" />
<referencedClass name="OCA\NotifyPush\Queue\IQueue" />
</errorLevel>
</UndefinedClass>
<UndefinedDocblockClass>
+13
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);
}
}