Rename method

This commit is contained in:
James Cole
2022-10-01 05:29:42 +02:00
parent 4474a71e65
commit 93c83fbe7a
26 changed files with 47 additions and 47 deletions

View File

@@ -44,17 +44,17 @@ class StoreRequest extends FormRequest
public function getAll(): array
{
$fields = [
'order' => ['order', 'integer'],
'order' => ['order', 'convertInteger'],
];
$data = $this->getAllData($fields);
$data['name'] = $this->convertString('name');
$data['account_id'] = $this->integer('account_id');
$data['account_id'] = $this->convertInteger('account_id');
$data['targetamount'] = $this->convertString('target_amount');
$data['current_amount'] = $this->convertString('current_amount');
$data['startdate'] = $this->getCarbonDate('start_date');
$data['targetdate'] = $this->getCarbonDate('target_date');
$data['notes'] = $this->stringWithNewlines('notes');
$data['object_group_id'] = $this->integer('object_group_id');
$data['object_group_id'] = $this->convertInteger('object_group_id');
$data['object_group_title'] = $this->convertString('object_group_title');
return $data;

View File

@@ -47,15 +47,15 @@ class UpdateRequest extends FormRequest
{
$fields = [
'name' => ['name', 'convertString'],
'account_id' => ['account_id', 'integer'],
'account_id' => ['account_id', 'convertInteger'],
'targetamount' => ['target_amount', 'convertString'],
'current_amount' => ['current_amount', 'convertString'],
'startdate' => ['start_date', 'date'],
'targetdate' => ['target_date', 'convertString'],
'notes' => ['notes', 'stringWithNewlines'],
'order' => ['order', 'integer'],
'order' => ['order', 'convertInteger'],
'object_group_title' => ['object_group_title', 'convertString'],
'object_group_id' => ['object_group_id', 'integer'],
'object_group_id' => ['object_group_id', 'convertInteger'],
];
return $this->getAllData($fields);