File "CustomerNewAccount.php"
Full Path: /home/aiclgcwq/photonindustriespvt.com/wp-content/plugins/woocommerce/src/Blocks/Domain/Services/Email/CustomerNewAccount.php
File size: 578 bytes
MIME-type: text/x-php
Charset: utf-8
<?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();
}
}