Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
immortalist
/
wp-content
/
plugins
/
woocommerce
/
src
/
Blocks
/
Domain
/
Services
/
Email
:
CustomerNewAccount.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php declare( strict_types=1 ); namespace Automattic\WooCommerce\Blocks\Domain\Services\Email; use Automattic\WooCommerce\Blocks\Domain\Package; /** * Customer New Account. Previously used for blocks, but now replaced by the core email. * * @deprecated This class can't be removed due to https://github.com/woocommerce/woocommerce/issues/52311. */ class CustomerNewAccount extends \WC_Email { /** * Constructor. * * @param Package $package An instance of (Woo Blocks) Package. */ public function __construct( Package $package ) { parent::__construct(); } }