您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

StartTransactionImport.php 544B

12345678910111213141516171819202122232425
  1. <?php
  2. namespace App\Events;
  3. use App\Models\Banking\ConnectedBankAccount;
  4. use App\Models\Company;
  5. use Illuminate\Foundation\Events\Dispatchable;
  6. use Illuminate\Queue\SerializesModels;
  7. class StartTransactionImport
  8. {
  9. use Dispatchable;
  10. use SerializesModels;
  11. /**
  12. * Create a new event instance.
  13. */
  14. public function __construct(
  15. public Company $company,
  16. public ConnectedBankAccount $connectedBankAccount,
  17. public int | string $selectedBankAccountId,
  18. public string $startDate
  19. ) {
  20. }
  21. }