We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4fd4f9b commit 094c962Copy full SHA for 094c962
src/Internal/Assembler/TransferDtoAssemblerInterface.php
@@ -9,8 +9,19 @@
9
10
interface TransferDtoAssemblerInterface
11
{
12
- /**
+/**
13
* Create transfer dto.
14
+ *
15
+ * @param int $depositId ID of deposit transaction
16
+ * @param int $withdrawId ID of withdraw transaction
17
+ * @param string $status Status of transfer
18
+ * @param Model $fromModel From wallet model
19
+ * @param Model $toModel To wallet model
20
+ * @param int $discount Discount of transfer
21
+ * @param string $fee Fee of transfer
22
+ * @param string|null $uuid UUID of transfer
23
+ * @param array<mixed>|null $extra Extra data of transfer
24
+ * @return TransferDtoInterface
25
*/
26
public function create(
27
int $depositId,
0 commit comments