mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-11-20 00:20:03 +00:00
Fix bad call to method.
This commit is contained in:
@@ -44,10 +44,10 @@ class RuleFormRequest extends FormRequest
|
||||
public function getRuleData(): array
|
||||
{
|
||||
return [
|
||||
'title' => $this->string('title'),
|
||||
'title' => $this->convertString('title'),
|
||||
'rule_group_id' => $this->integer('rule_group_id'),
|
||||
'active' => $this->boolean('active'),
|
||||
'trigger' => $this->string('trigger'),
|
||||
'trigger' => $this->convertString('trigger'),
|
||||
'description' => $this->stringWithNewlines('description'),
|
||||
'stop_processing' => $this->boolean('stop_processing'),
|
||||
'strict' => $this->boolean('strict'),
|
||||
|
||||
Reference in New Issue
Block a user