mirror of
https://github.com/nextcloud/server.git
synced 2024-11-14 20:36:50 +00:00
9836e9b164
Signed-off-by: provokateurin <kate@provokateurin.de>
31 lines
511 B
PHP
31 lines
511 B
PHP
<?php
|
|
/**
|
|
* SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
namespace OCP\Files\Template;
|
|
|
|
use OCP\EventDispatcher\Event;
|
|
|
|
/**
|
|
* @since 30.0.0
|
|
*/
|
|
class RegisterTemplateCreatorEvent extends Event {
|
|
|
|
/**
|
|
* @since 30.0.0
|
|
*/
|
|
public function __construct(
|
|
private ITemplateManager $templateManager,
|
|
) {
|
|
}
|
|
|
|
/**
|
|
* @since 30.0.0
|
|
*/
|
|
public function getTemplateManager(): ITemplateManager {
|
|
return $this->templateManager;
|
|
}
|
|
}
|