diff --git a/src/Abstracts/EmailAbstract.php b/src/Abstracts/EmailAbstract.php index 8542f0ab2e828ca6c6eff2d28e9e4824eb3fb73c..fbd687f64551207c6df85dc6820d5f84e6eb2220 100644 --- a/src/Abstracts/EmailAbstract.php +++ b/src/Abstracts/EmailAbstract.php @@ -6,6 +6,11 @@ use Exception; abstract class EmailAbstract implements EmailInterface { + /** + * @var bool + */ + private $is_enable; + /** * @var array */ @@ -53,6 +58,22 @@ abstract class EmailAbstract implements EmailInterface { */ abstract public function get_id(): string; + /** + * @return bool + */ + public function get_is_enable(): bool { + return $this->is_enable; + } + + /** + * @return bool + */ + public function set_is_enable( $enable ): self { + $this->is_enable = $enable; + + return $this; + } + /** * Set placeholders. *