mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-30 12:43:57 -06:00
35 lines
609 B
PHP
35 lines
609 B
PHP
|
<?php
|
||
|
|
||
|
namespace FireflyIII\Rules;
|
||
|
|
||
|
use Illuminate\Contracts\Validation\Rule;
|
||
|
|
||
|
/**
|
||
|
* Class LessThanPiggyTarget
|
||
|
*/
|
||
|
class LessThanPiggyTarget implements Rule
|
||
|
{
|
||
|
/**
|
||
|
* Get the validation error message.
|
||
|
*
|
||
|
* @return string
|
||
|
*/
|
||
|
public function message(): string
|
||
|
{
|
||
|
return (string)trans('validation.current_target_amount');
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Determine if the validation rule passes.
|
||
|
*
|
||
|
* @param string $attribute
|
||
|
* @param mixed $value
|
||
|
*
|
||
|
* @return bool
|
||
|
*/
|
||
|
public function passes($attribute, $value): bool
|
||
|
{
|
||
|
return true;
|
||
|
}
|
||
|
}
|