Skip to content

Commit

Permalink
Merge pull request #35 from amocrm/hotfix/issue#27
Browse files Browse the repository at this point in the history
fix date custom fields values
  • Loading branch information
bessudnov authored Jun 25, 2020
2 parents 03441bb + 23a4b82 commit ee27619
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public function setValue($value): BaseCustomFieldValueModel
public function toApi(string $requestId = null): array
{
return [
'value' => date('Y-m-d', $this->value),
'value' => $this->value,
];
}
}

0 comments on commit ee27619

Please sign in to comment.