Move more events #11544

This commit is contained in:
James Cole
2026-01-24 13:33:40 +01:00
parent e76ab21091
commit 70e11098af
13 changed files with 165 additions and 224 deletions

View File

@@ -0,0 +1,37 @@
<?php
/*
* TransactionGroupsRequestedReporting.php
* Copyright (c) 2026 james@firefly-iii.org
*
* This file is part of Firefly III (https://github.com/firefly-iii).
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
namespace FireflyIII\Events\Model\TransactionGroup;
use FireflyIII\Events\Event;
use Illuminate\Queue\SerializesModels;
use Illuminate\Support\Collection;
class TransactionGroupsRequestedReporting extends Event
{
use SerializesModels;
/**
* Create a new event instance.
*/
public function __construct(public int $userId, public Collection $groups) {}
}