Hi,
thank you very much for this great tool. Up to now it seems to work as it should.
But I think there is an error in your example code:
$payment->setDate(new \DateTime('+1 day')); // Gewuenschter Ausfuehrungstermin
does not work - string expected! I suggest using this:
$date = new \DateTime('+1 day');
$payment->setDate($date->format("Y-m-d")); // Gewuenschter Ausfuehrungstermin
Furthermore one day is probably too short. At least for my bank.
Have a nice day
Oliver
Hi,
thank you very much for this great tool. Up to now it seems to work as it should.
But I think there is an error in your example code:
$payment->setDate(new \DateTime('+1 day')); // Gewuenschter Ausfuehrungstermin
does not work - string expected! I suggest using this:
$date = new \DateTime('+1 day');
$payment->setDate($date->format("Y-m-d")); // Gewuenschter Ausfuehrungstermin
Furthermore one day is probably too short. At least for my bank.
Have a nice day
Oliver