chore: Add LoadEditor event to psalm stubs

Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
Julius Härtl
2023-08-09 13:53:34 +02:00
parent a32b3cd3cf
commit 9aded3ccb8
2 changed files with 5 additions and 2 deletions

View File

@@ -10,7 +10,6 @@ use OCP\IL10N;
use OCP\IURLGenerator; use OCP\IURLGenerator;
class CreateCardReferenceProvider extends ADiscoverableReferenceProvider { class CreateCardReferenceProvider extends ADiscoverableReferenceProvider {
public function __construct( public function __construct(
private IL10N $l10n, private IL10N $l10n,
private IURLGenerator $urlGenerator, private IURLGenerator $urlGenerator,

View File

@@ -674,3 +674,7 @@ namespace OCA\NotifyPush\Queue {
public function push(string $channel, $message); public function push(string $channel, $message);
} }
} }
namespace OCA\Text\Event {
class LoadEditor extends \OCP\EventDispatcher\Event {}
}