Skip to content
Snippets Groups Projects
Select Git revision
  • 54430822019fe322fb8cc95c9ca9295ea2a04551
  • main default protected
  • devel
  • 1.0.0
4 results

CustomerEmail.php

Blame
  • CustomerEmail.php 323 B
    <?php
    
    namespace WPDesk\Library\WPEmail;
    
    use WPDesk\Library\WPEmail\Abstracts\EmailAbstract;
    
    class CustomerEmail extends EmailAbstract {
    
        const ID = 'customer_email';
    
        /**
         * Define unique email ID.
         *
         * @return string
         */
        public function get_id(): string {
            return self::ID;
        }
    
    }