Files
firefly-iii/app/Events/Security/System/SystemRequestedVersionCheck.php

39 lines
1.1 KiB
PHP
Raw Normal View History

2020-12-02 19:30:09 +01:00
<?php
declare(strict_types=1);
2021-01-29 18:50:35 +01:00
/*
2026-01-24 13:44:02 +01:00
* SystemRequestedVersionCheck.php
* Copyright (c) 2026 james@firefly-iii.org
2021-01-29 18:50:35 +01:00
*
* 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/>.
*/
2026-01-24 13:44:02 +01:00
namespace FireflyIII\Events\Security\System;
2020-12-02 19:30:09 +01:00
2026-01-24 13:44:02 +01:00
use FireflyIII\Events\Event;
use FireflyIII\User;
2020-12-02 19:30:09 +01:00
use Illuminate\Queue\SerializesModels;
2026-01-24 13:44:02 +01:00
class SystemRequestedVersionCheck extends Event
2020-12-02 19:30:09 +01:00
{
use SerializesModels;
2026-01-24 13:44:02 +01:00
public function __construct(
public User $user
) {}
2020-12-22 05:35:06 +01:00
}