Files
firefly-iii/app/Rules/LessThanPiggyTarget.php

50 lines
1.4 KiB
PHP
Raw Normal View History

2019-08-21 05:15:47 +02:00
<?php
2020-06-30 19:05:35 +02:00
/**
* LessThanPiggyTarget.php
2020-06-30 19:05:35 +02:00
* Copyright (c) 2020 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/>.
*/
2019-08-21 05:15:47 +02:00
2020-06-30 19:05:35 +02:00
declare(strict_types=1);
2019-08-21 05:15:47 +02:00
namespace FireflyIII\Rules;
2023-10-29 17:41:14 +01:00
use Illuminate\Contracts\Validation\ValidationRule;
2019-08-21 05:15:47 +02:00
/**
* Class LessThanPiggyTarget
*/
2023-10-29 17:41:14 +01:00
class LessThanPiggyTarget implements ValidationRule
2019-08-21 05:15:47 +02:00
{
/**
* Get the validation error message.
*/
public function message(): string
{
2024-12-22 08:43:12 +01:00
return (string) trans('validation.current_target_amount');
2019-08-21 05:15:47 +02:00
}
/**
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
2019-08-21 05:15:47 +02:00
*/
2023-12-20 19:35:52 +01:00
public function validate(string $attribute, mixed $value, \Closure $fail): void
2019-08-21 05:15:47 +02:00
{
2023-10-29 17:41:14 +01:00
// TODO not sure if this is still used.
2019-08-21 05:15:47 +02:00
}
}