-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4a2b93b
commit 82a0dd1
Showing
8 changed files
with
72 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<?php | ||
// 2017-01-04 | ||
namespace Dfe\Stripe\W\Handler\Charge; | ||
use Df\StripeClone\W\Strategy\Charge\Captured as Strategy; | ||
use Dfe\Stripe\Method as M; | ||
final class Captured extends \Dfe\Stripe\W\Handler { | ||
/** | ||
* 2017-01-06 | ||
* @override | ||
* @see \Df\StripeClone\W\Handler::currentTransactionType() | ||
* @used-by \Df\StripeClone\W\Handler::id() | ||
* @used-by \Df\StripeClone\W\Strategy::currentTransactionType() | ||
* @return string | ||
*/ | ||
function currentTransactionType() {return M::T_CAPTURE;} | ||
|
||
/** | ||
* 2017-01-06 | ||
* @override | ||
* @see \Df\StripeClone\W\Handler::parentTransactionType() | ||
* @used-by \Df\StripeClone\W\Handler::adaptParentId() | ||
* @return string | ||
*/ | ||
protected function parentTransactionType() {return M::T_AUTHORIZE;} | ||
|
||
/** | ||
* 2017-03-13 | ||
* @override | ||
* @see \Df\StripeClone\W\Handler::strategyC() | ||
* @used-by \Df\StripeClone\W\Handler::_handle() | ||
* @return string | ||
*/ | ||
protected function strategyC() {return Strategy::class;} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters