%PDF- %PDF-
Direktori : /www/varak.net/nextcloud.varak.net/apps_old/apps/bookmarks/lib/Events/ |
Current File : //www/varak.net/nextcloud.varak.net/apps_old/apps/bookmarks/lib/Events/ChangeEvent.php |
<?php /* * Copyright (c) 2020. The Nextcloud Bookmarks contributors. * * This file is licensed under the Affero General Public License version 3 or later. See the COPYING file. */ namespace OCA\Bookmarks\Events; use OCP\EventDispatcher\Event; abstract class ChangeEvent extends Event { /** * @var string */ private $type; /** * @var int */ private $id; public function __construct(string $type, int $id) { parent::__construct(); $this->type = $type; $this->id = $id; } /** * @return string */ public function getType(): string { return $this->type; } /** * @return int */ public function getId(): int { return $this->id; } }