| 1 |
<?php |
| 2 |
|
| 3 |
namespace SureCartBlocks\Blocks\Dashboard\CustomerPaymentMethods; |
| 4 |
|
| 5 |
use SureCartBlocks\Blocks\Dashboard\DashboardPage; |
| 6 |
use SureCartBlocks\Controllers\PaymentMethodController; |
| 7 |
|
| 8 |
/** |
| 9 |
* Checkout block |
| 10 |
*/ |
| 11 |
class Block extends DashboardPage { |
| 12 |
/** |
| 13 |
* Render the block |
| 14 |
* |
| 15 |
* @param array $attributes Block attributes. |
| 16 |
* @param string $content Post content. |
| 17 |
* |
| 18 |
* @return function |
| 19 |
*/ |
| 20 |
public function render( $attributes, $content ) { |
| 21 |
return ( new PaymentMethodController() )->index( $attributes, $content ); |
| 22 |
} |
| 23 |
} |
| 24 |
|