CustomerNewAccount.php
23 lines
| 1 | <?php |
| 2 | declare( strict_types=1 ); |
| 3 | |
| 4 | namespace Automattic\WooCommerce\Blocks\Domain\Services\Email; |
| 5 | |
| 6 | use Automattic\WooCommerce\Blocks\Domain\Package; |
| 7 | |
| 8 | /** |
| 9 | * Customer New Account. Previously used for blocks, but now replaced by the core email. |
| 10 | * |
| 11 | * @deprecated This class can't be removed due to https://github.com/woocommerce/woocommerce/issues/52311. |
| 12 | */ |
| 13 | class CustomerNewAccount extends \WC_Email { |
| 14 | /** |
| 15 | * Constructor. |
| 16 | * |
| 17 | * @param Package $package An instance of (Woo Blocks) Package. |
| 18 | */ |
| 19 | public function __construct( Package $package ) { |
| 20 | parent::__construct(); |
| 21 | } |
| 22 | } |
| 23 |