12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- declare(strict_types=1);
- /**
- * SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors
- * SPDX-License-Identifier: AGPL-3.0-or-later
- */
- namespace OCP\WorkflowEngine\Events;
- use OCP\EventDispatcher\Event;
- use OCP\WorkflowEngine\ICheck;
- use OCP\WorkflowEngine\IManager;
- /**
- * @since 18.0.0
- */
- class RegisterChecksEvent extends Event {
- /** @var IManager */
- private $manager;
- /**
- * @since 18.0.0
- */
- public function __construct(IManager $manager) {
- parent::__construct();
- $this->manager = $manager;
- }
- /**
- * @since 18.0.0
- */
- public function registerCheck(ICheck $check): void {
- $this->manager->registerCheck($check);
- }
- }
|