Writing some Behat tests for a Stripe gateway, I found that each generated capture tokens were never been invalidated.
Reading the documentation of payum/payum about capture.php and how payum/payum-bundle is handling a capture : https://github.com/Payum/PayumBundle/blob/master/Controller/CaptureController.php#L42-L44
It appears that if a gateway is using a ReplyInterface then the invalidation of the capture token is not made.
Is it a mistake or something wanted ?